PyGeoFetch 0.1.0__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pygeofetch-0.1.0 → pygeofetch-1.0.0}/LICENSE +1 -1
- pygeofetch-1.0.0/PKG-INFO +1022 -0
- pygeofetch-1.0.0/PyGeoFetch.egg-info/PKG-INFO +1022 -0
- pygeofetch-1.0.0/PyGeoFetch.egg-info/SOURCES.txt +77 -0
- pygeofetch-1.0.0/PyGeoFetch.egg-info/entry_points.txt +2 -0
- {pygeofetch-0.1.0 → pygeofetch-1.0.0}/PyGeoFetch.egg-info/requires.txt +13 -9
- pygeofetch-1.0.0/PyGeoFetch.egg-info/top_level.txt +1 -0
- pygeofetch-1.0.0/README.md +937 -0
- pygeofetch-1.0.0/pygeofetch/__init__.py +39 -0
- pygeofetch-1.0.0/pygeofetch/cli/__init__.py +1 -0
- pygeofetch-1.0.0/pygeofetch/cli/auth_commands.py +256 -0
- pygeofetch-1.0.0/pygeofetch/cli/config_commands.py +143 -0
- pygeofetch-1.0.0/pygeofetch/cli/download_commands.py +279 -0
- pygeofetch-1.0.0/pygeofetch/cli/index_commands.py +219 -0
- pygeofetch-1.0.0/pygeofetch/cli/main.py +780 -0
- pygeofetch-1.0.0/pygeofetch/cli/pipeline_process_commands.py +150 -0
- pygeofetch-1.0.0/pygeofetch/cli/postprocess_commands.py +132 -0
- pygeofetch-1.0.0/pygeofetch/cli/preprocess_commands.py +185 -0
- pygeofetch-1.0.0/pygeofetch/cli/sar_commands.py +80 -0
- pygeofetch-1.0.0/pygeofetch/cli/search_commands.py +249 -0
- pygeofetch-1.0.0/pygeofetch/config/__init__.py +11 -0
- pygeofetch-1.0.0/pygeofetch/config/defaults.yaml +86 -0
- pygeofetch-1.0.0/pygeofetch/config/settings.py +235 -0
- pygeofetch-1.0.0/pygeofetch/core/__init__.py +18 -0
- pygeofetch-1.0.0/pygeofetch/core/authenticator.py +432 -0
- pygeofetch-1.0.0/pygeofetch/core/cache_manager.py +288 -0
- pygeofetch-1.0.0/pygeofetch/core/downloader.py +354 -0
- pygeofetch-1.0.0/pygeofetch/core/engine.py +336 -0
- pygeofetch-1.0.0/pygeofetch/core/scheduler.py +473 -0
- pygeofetch-1.0.0/pygeofetch/core/searcher.py +341 -0
- pygeofetch-1.0.0/pygeofetch/models/__init__.py +44 -0
- pygeofetch-1.0.0/pygeofetch/models/download_task.py +283 -0
- pygeofetch-1.0.0/pygeofetch/models/satellite_data.py +402 -0
- pygeofetch-1.0.0/pygeofetch/models/search_query.py +329 -0
- pygeofetch-1.0.0/pygeofetch/models/user_auth.py +123 -0
- pygeofetch-1.0.0/pygeofetch/processing/__init__.py +15 -0
- pygeofetch-1.0.0/pygeofetch/processing/base.py +102 -0
- pygeofetch-1.0.0/pygeofetch/processing/batch.py +164 -0
- pygeofetch-1.0.0/pygeofetch/processing/indices.py +777 -0
- pygeofetch-1.0.0/pygeofetch/processing/pipeline.py +328 -0
- pygeofetch-1.0.0/pygeofetch/processing/postprocessor.py +567 -0
- pygeofetch-1.0.0/pygeofetch/processing/preprocessor.py +989 -0
- pygeofetch-1.0.0/pygeofetch/processing/sar.py +315 -0
- pygeofetch-1.0.0/pygeofetch/providers/__init__.py +192 -0
- pygeofetch-1.0.0/pygeofetch/providers/airbus_oneatlas.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/alaska_satellite_facility.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/aws_earth.py +267 -0
- pygeofetch-1.0.0/pygeofetch/providers/base.py +306 -0
- pygeofetch-1.0.0/pygeofetch/providers/copernicus.py +487 -0
- pygeofetch-1.0.0/pygeofetch/providers/digitalglobe.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/earth_explorer_additional.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/element84.py +230 -0
- pygeofetch-1.0.0/pygeofetch/providers/esa_scihub.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/geoserver_generic.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/google_earth_engine.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/inpe_cbers.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/isro_bhuvan.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/jaxa_earth.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/maxar_gbdx.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/nasa_earthdata.py +160 -0
- pygeofetch-1.0.0/pygeofetch/providers/nasa_earthdata_cloud.py +345 -0
- pygeofetch-1.0.0/pygeofetch/providers/noaa_big_data.py +150 -0
- pygeofetch-1.0.0/pygeofetch/providers/opentopography.py +108 -0
- pygeofetch-1.0.0/pygeofetch/providers/planet.py +369 -0
- pygeofetch-1.0.0/pygeofetch/providers/planetary_computer.py +295 -0
- pygeofetch-1.0.0/pygeofetch/providers/sentinel_hub.py +173 -0
- pygeofetch-1.0.0/pygeofetch/providers/terrabotics.py +278 -0
- pygeofetch-1.0.0/pygeofetch/providers/usgs.py +454 -0
- pygeofetch-1.0.0/pygeofetch/utils/__init__.py +50 -0
- pygeofetch-1.0.0/pygeofetch/utils/file_utils.py +275 -0
- pygeofetch-1.0.0/pygeofetch/utils/geo_utils.py +241 -0
- pygeofetch-1.0.0/pygeofetch/utils/logging_setup.py +107 -0
- pygeofetch-1.0.0/pygeofetch/utils/retry_handler.py +225 -0
- pygeofetch-1.0.0/pygeofetch/utils/validators.py +155 -0
- {pygeofetch-0.1.0 → pygeofetch-1.0.0}/pyproject.toml +24 -28
- pygeofetch-0.1.0/PKG-INFO +0 -720
- pygeofetch-0.1.0/PyGeoFetch.egg-info/PKG-INFO +0 -720
- pygeofetch-0.1.0/PyGeoFetch.egg-info/SOURCES.txt +0 -11
- pygeofetch-0.1.0/PyGeoFetch.egg-info/entry_points.txt +0 -2
- pygeofetch-0.1.0/PyGeoFetch.egg-info/top_level.txt +0 -1
- pygeofetch-0.1.0/README.md +0 -637
- {pygeofetch-0.1.0 → pygeofetch-1.0.0}/PyGeoFetch.egg-info/dependency_links.txt +0 -0
- {pygeofetch-0.1.0 → pygeofetch-1.0.0}/PyGeoFetch.egg-info/not-zip-safe +0 -0
- {pygeofetch-0.1.0 → pygeofetch-1.0.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2024
|
|
3
|
+
Copyright (c) 2024 SatelliteBridge Contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|