├── .gitignore ├── DEM coregistration.ipynb ├── README.md ├── apt.txt ├── data ├── AST14DMO_00308122004104803_DEM.tif └── dem_25m_statkart.tif ├── environment.yml └── windows.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /DEM coregistration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdonovan/dem-coregistration/HEAD/DEM coregistration.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdonovan/dem-coregistration/HEAD/README.md -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- 1 | libgl1-mesa-glx 2 | -------------------------------------------------------------------------------- /data/AST14DMO_00308122004104803_DEM.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdonovan/dem-coregistration/HEAD/data/AST14DMO_00308122004104803_DEM.tif -------------------------------------------------------------------------------- /data/dem_25m_statkart.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdonovan/dem-coregistration/HEAD/data/dem_25m_statkart.tif -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdonovan/dem-coregistration/HEAD/environment.yml -------------------------------------------------------------------------------- /windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdonovan/dem-coregistration/HEAD/windows.yml --------------------------------------------------------------------------------