Python

'Undefined Symbol: PySlice_Unpack' error in Pytorch

Problem: ‘Undefined Symbol: PySlice_Unpack’ Environment: Pytorch = 1.0.1 Python = 3.6.0 Solution: Upgrade Python to 3.6.3. Seems like this is the only solution. Update by conda install python==3.6.3 command if using Miniconda in CLI.

Same-day Landsat-8 and Sentinel-2 Pair Generation on GEE

This notebook presents a data preparation workflow that finds same-date and overlapped Landsat8 and Sentinel2 image patches and provide a way to download the processed images to the local machine. This is a part of the ongoing research project Landsat2Sentinel. The whole notebook is available on my Github repository. import ee ee.Initialize() from IPython import display import zipfile import urllib from ipywidgets import IntProgress Function for downloading images from GEE def download_tif(image, scale, name, folder): url = ee.

Installation of GDAL and its Python Libraries on Mac

Recently I have been trying to install GDAL on my Mac and I cannot find a way to link the Python libraries to the Python program I am using so that I can import GDAL libraries by the import gdal statement in my python program. The GDAL is designed to run in Mac OS X Terminals, but the installation include python libraries which are not automatically linked to the program. Therefore, the only thing we need to do to make it work in python is to link those libraries properly.