Commit 7e151e8b authored by Jesse Mapel's avatar Jesse Mapel Committed by GitHub
Browse files

Added MDIS example (#3)

* Added simple MDIS example

* Added notebook to download DEM chunk covering image extents

* now with DEM intersection

* Fixed Mercury projection string
parent c335d6bc
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -102,3 +102,7 @@ venv.bak/

# mypy
.mypy_cache/

# Image files
*.IMG
*.tif
+1 −0
Original line number Diff line number Diff line
@@ -13,4 +13,5 @@ dependencies:
  - pyproj
  - requests
  - scipy
  - matplotlib
  - shapely
+298 −0

File added.

Preview size limit exceeded, changes collapsed.

+283 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@ from distutils import sysconfig
import os
import warnings

from . import csm

from csmapi import csmapi

# Register the usgscam plugin with the csmapi
Loading