This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from multiprocessing import Pool, cpu_count | |
import time | |
from functools import partial | |
import numpy as np | |
import scipy | |
from skimage.segmentation import slic | |
from osgeo import gdal | |
from skimage import exposure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from geosupport import Geosupport, GeosupportError | |
import pandas as pd | |
from multiprocessing import Pool, cpu_count | |
from functools import partial | |
import numpy as np | |
""" | |
Example of how to use python-geosupport, Pandas and Multiprocessing to speed up geocoding workflows. | |
""" |