├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── ee_ppipe ├── __init__.py ├── acl_changer.py ├── aoi.json ├── batch_copy.py ├── batch_mover.py ├── batch_remover.py ├── batch_uploader.py ├── batch_uploading.py ├── cleanup.py ├── cli_aoi2json.py ├── cli_jsonparse.py ├── cli_metadata.py ├── collectionprop.py ├── config.py ├── download.py ├── ee_auth.py ├── ee_ls.py ├── ee_ppipe.py ├── ee_ppipe_gui.bat ├── gee_assets_errors.log ├── gee_assets_info.log ├── gooey_config.json ├── kml_aoi.py ├── logconfig.json ├── message.py ├── metadata_loader.py ├── ogr2ft.py ├── planet_key.py ├── query.py ├── taskreport.py ├── testme.kml └── wrs_grid.csv ├── requirements.txt └── windows executable └── eePlanet-GUI.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/README.md -------------------------------------------------------------------------------- /ee_ppipe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/__init__.py -------------------------------------------------------------------------------- /ee_ppipe/acl_changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/acl_changer.py -------------------------------------------------------------------------------- /ee_ppipe/aoi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/aoi.json -------------------------------------------------------------------------------- /ee_ppipe/batch_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/batch_copy.py -------------------------------------------------------------------------------- /ee_ppipe/batch_mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/batch_mover.py -------------------------------------------------------------------------------- /ee_ppipe/batch_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/batch_remover.py -------------------------------------------------------------------------------- /ee_ppipe/batch_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/batch_uploader.py -------------------------------------------------------------------------------- /ee_ppipe/batch_uploading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/batch_uploading.py -------------------------------------------------------------------------------- /ee_ppipe/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/cleanup.py -------------------------------------------------------------------------------- /ee_ppipe/cli_aoi2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/cli_aoi2json.py -------------------------------------------------------------------------------- /ee_ppipe/cli_jsonparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/cli_jsonparse.py -------------------------------------------------------------------------------- /ee_ppipe/cli_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/cli_metadata.py -------------------------------------------------------------------------------- /ee_ppipe/collectionprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/collectionprop.py -------------------------------------------------------------------------------- /ee_ppipe/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/config.py -------------------------------------------------------------------------------- /ee_ppipe/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/download.py -------------------------------------------------------------------------------- /ee_ppipe/ee_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/ee_auth.py -------------------------------------------------------------------------------- /ee_ppipe/ee_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/ee_ls.py -------------------------------------------------------------------------------- /ee_ppipe/ee_ppipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/ee_ppipe.py -------------------------------------------------------------------------------- /ee_ppipe/ee_ppipe_gui.bat: -------------------------------------------------------------------------------- 1 | python ee_ppipe.py -------------------------------------------------------------------------------- /ee_ppipe/gee_assets_errors.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee_ppipe/gee_assets_info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/gee_assets_info.log -------------------------------------------------------------------------------- /ee_ppipe/gooey_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/gooey_config.json -------------------------------------------------------------------------------- /ee_ppipe/kml_aoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/kml_aoi.py -------------------------------------------------------------------------------- /ee_ppipe/logconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/logconfig.json -------------------------------------------------------------------------------- /ee_ppipe/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/message.py -------------------------------------------------------------------------------- /ee_ppipe/metadata_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/metadata_loader.py -------------------------------------------------------------------------------- /ee_ppipe/ogr2ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/ogr2ft.py -------------------------------------------------------------------------------- /ee_ppipe/planet_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/planet_key.py -------------------------------------------------------------------------------- /ee_ppipe/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/query.py -------------------------------------------------------------------------------- /ee_ppipe/taskreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/taskreport.py -------------------------------------------------------------------------------- /ee_ppipe/testme.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/testme.kml -------------------------------------------------------------------------------- /ee_ppipe/wrs_grid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/ee_ppipe/wrs_grid.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /windows executable/eePlanet-GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samapriya/Planet-GEE-Pipeline-GUI/HEAD/windows executable/eePlanet-GUI.exe --------------------------------------------------------------------------------