Imports Test

This notebook imports all of the dependencies in this repo to identify any import errors. The purpose of this notebook is to provide some basic testing for development involving the Docker image.

Every once in a while, check to see all these packages are used

find . -type f -print0 | xargs -0 grep "import <package>"

In [1]:
# please keep this in alphabetical order
import cv2
import fiona
import geojson
import geojsonio
import geopandas
import ipyleaflet
import ipywidgets
import matplotlib
import mercantile
import numpy
from osgeo import gdal, osr
import pandas
import planet
import pyproj
import pytest
import rasterio
import requests
import scipy
import shapely
import six # python2/3 compatibility
import skimage
import sklearn
import tqdm

In [ ]: