├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── apply_setsm_registration.py ├── attic ├── divide_setsm_tiles.py └── generate_browse_setsm.py ├── calc_density.py ├── calc_density_tiles.py ├── config.ini.example ├── copy_dems.py ├── extract_stac_items_from_sandwich.py ├── extract_stac_metadata.py ├── gather_stac_collections.py ├── gdal_wgs84_to_egm08_working.sh ├── index_setsm.py ├── lib ├── __init__.py ├── dem.py ├── numpy_read_50cm_scene_rasters.py ├── stac.py ├── taskhandler.py ├── utils.py ├── version.py └── walk.py ├── package_setsm.py ├── package_setsm_tiles.py ├── pbs_package.sh ├── pbs_resample.sh ├── rename_setsm_add_version.py ├── reproject_setsm.py ├── resample_setsm.py ├── resample_setsm_tiles.py ├── shelve_setsm_strips_simple.py ├── slurm_package.sh ├── slurm_resample.sh ├── sql ├── create_mat_view_stac_static_item.sql ├── create_table_stac_mosaic_info.sql ├── create_table_stac_raster_asset_info.sql ├── create_view_scene_dem_all.sql ├── create_view_scene_dem_master.sql ├── create_view_scene_dem_master_dsp.sql ├── create_view_scene_dem_noncanonical.sql ├── create_view_scene_dem_noncanonical_dsp.sql ├── create_view_stac_mosaic_item.sql ├── create_view_stac_strip_item.sql ├── create_view_strip_dem_all.sql ├── create_view_strip_dem_gentime.sql └── create_view_strip_dem_master.sql └── tests ├── __init__.py ├── conftest.py ├── test_build_stac_items.py ├── test_extract_stac_items_from_sandwich.py ├── test_index.py ├── test_package.py ├── test_taskhandler.py ├── test_utils.py └── test_view_stac_static_item.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/README.md -------------------------------------------------------------------------------- /apply_setsm_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/apply_setsm_registration.py -------------------------------------------------------------------------------- /attic/divide_setsm_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/attic/divide_setsm_tiles.py -------------------------------------------------------------------------------- /attic/generate_browse_setsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/attic/generate_browse_setsm.py -------------------------------------------------------------------------------- /calc_density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/calc_density.py -------------------------------------------------------------------------------- /calc_density_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/calc_density_tiles.py -------------------------------------------------------------------------------- /config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/config.ini.example -------------------------------------------------------------------------------- /copy_dems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/copy_dems.py -------------------------------------------------------------------------------- /extract_stac_items_from_sandwich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/extract_stac_items_from_sandwich.py -------------------------------------------------------------------------------- /extract_stac_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/extract_stac_metadata.py -------------------------------------------------------------------------------- /gather_stac_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/gather_stac_collections.py -------------------------------------------------------------------------------- /gdal_wgs84_to_egm08_working.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/gdal_wgs84_to_egm08_working.sh -------------------------------------------------------------------------------- /index_setsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/index_setsm.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/dem.py -------------------------------------------------------------------------------- /lib/numpy_read_50cm_scene_rasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/numpy_read_50cm_scene_rasters.py -------------------------------------------------------------------------------- /lib/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/stac.py -------------------------------------------------------------------------------- /lib/taskhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/taskhandler.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/utils.py -------------------------------------------------------------------------------- /lib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/version.py -------------------------------------------------------------------------------- /lib/walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/lib/walk.py -------------------------------------------------------------------------------- /package_setsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/package_setsm.py -------------------------------------------------------------------------------- /package_setsm_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/package_setsm_tiles.py -------------------------------------------------------------------------------- /pbs_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/pbs_package.sh -------------------------------------------------------------------------------- /pbs_resample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/pbs_resample.sh -------------------------------------------------------------------------------- /rename_setsm_add_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/rename_setsm_add_version.py -------------------------------------------------------------------------------- /reproject_setsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/reproject_setsm.py -------------------------------------------------------------------------------- /resample_setsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/resample_setsm.py -------------------------------------------------------------------------------- /resample_setsm_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/resample_setsm_tiles.py -------------------------------------------------------------------------------- /shelve_setsm_strips_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/shelve_setsm_strips_simple.py -------------------------------------------------------------------------------- /slurm_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/slurm_package.sh -------------------------------------------------------------------------------- /slurm_resample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/slurm_resample.sh -------------------------------------------------------------------------------- /sql/create_mat_view_stac_static_item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_mat_view_stac_static_item.sql -------------------------------------------------------------------------------- /sql/create_table_stac_mosaic_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_table_stac_mosaic_info.sql -------------------------------------------------------------------------------- /sql/create_table_stac_raster_asset_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_table_stac_raster_asset_info.sql -------------------------------------------------------------------------------- /sql/create_view_scene_dem_all.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_scene_dem_all.sql -------------------------------------------------------------------------------- /sql/create_view_scene_dem_master.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_scene_dem_master.sql -------------------------------------------------------------------------------- /sql/create_view_scene_dem_master_dsp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_scene_dem_master_dsp.sql -------------------------------------------------------------------------------- /sql/create_view_scene_dem_noncanonical.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_scene_dem_noncanonical.sql -------------------------------------------------------------------------------- /sql/create_view_scene_dem_noncanonical_dsp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_scene_dem_noncanonical_dsp.sql -------------------------------------------------------------------------------- /sql/create_view_stac_mosaic_item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_stac_mosaic_item.sql -------------------------------------------------------------------------------- /sql/create_view_stac_strip_item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_stac_strip_item.sql -------------------------------------------------------------------------------- /sql/create_view_strip_dem_all.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_strip_dem_all.sql -------------------------------------------------------------------------------- /sql/create_view_strip_dem_gentime.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_strip_dem_gentime.sql -------------------------------------------------------------------------------- /sql/create_view_strip_dem_master.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/sql/create_view_strip_dem_master.sql -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_build_stac_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/test_build_stac_items.py -------------------------------------------------------------------------------- /tests/test_extract_stac_items_from_sandwich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/test_extract_stac_items_from_sandwich.py -------------------------------------------------------------------------------- /tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/test_index.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/test_package.py -------------------------------------------------------------------------------- /tests/test_taskhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/test_taskhandler.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_view_stac_static_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolarGeospatialCenter/pgcdemtools/HEAD/tests/test_view_stac_static_item.py --------------------------------------------------------------------------------