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.
Files changed (84) hide show
  1. {pygeofetch-0.1.0 → pygeofetch-1.0.0}/LICENSE +1 -1
  2. pygeofetch-1.0.0/PKG-INFO +1022 -0
  3. pygeofetch-1.0.0/PyGeoFetch.egg-info/PKG-INFO +1022 -0
  4. pygeofetch-1.0.0/PyGeoFetch.egg-info/SOURCES.txt +77 -0
  5. pygeofetch-1.0.0/PyGeoFetch.egg-info/entry_points.txt +2 -0
  6. {pygeofetch-0.1.0 → pygeofetch-1.0.0}/PyGeoFetch.egg-info/requires.txt +13 -9
  7. pygeofetch-1.0.0/PyGeoFetch.egg-info/top_level.txt +1 -0
  8. pygeofetch-1.0.0/README.md +937 -0
  9. pygeofetch-1.0.0/pygeofetch/__init__.py +39 -0
  10. pygeofetch-1.0.0/pygeofetch/cli/__init__.py +1 -0
  11. pygeofetch-1.0.0/pygeofetch/cli/auth_commands.py +256 -0
  12. pygeofetch-1.0.0/pygeofetch/cli/config_commands.py +143 -0
  13. pygeofetch-1.0.0/pygeofetch/cli/download_commands.py +279 -0
  14. pygeofetch-1.0.0/pygeofetch/cli/index_commands.py +219 -0
  15. pygeofetch-1.0.0/pygeofetch/cli/main.py +780 -0
  16. pygeofetch-1.0.0/pygeofetch/cli/pipeline_process_commands.py +150 -0
  17. pygeofetch-1.0.0/pygeofetch/cli/postprocess_commands.py +132 -0
  18. pygeofetch-1.0.0/pygeofetch/cli/preprocess_commands.py +185 -0
  19. pygeofetch-1.0.0/pygeofetch/cli/sar_commands.py +80 -0
  20. pygeofetch-1.0.0/pygeofetch/cli/search_commands.py +249 -0
  21. pygeofetch-1.0.0/pygeofetch/config/__init__.py +11 -0
  22. pygeofetch-1.0.0/pygeofetch/config/defaults.yaml +86 -0
  23. pygeofetch-1.0.0/pygeofetch/config/settings.py +235 -0
  24. pygeofetch-1.0.0/pygeofetch/core/__init__.py +18 -0
  25. pygeofetch-1.0.0/pygeofetch/core/authenticator.py +432 -0
  26. pygeofetch-1.0.0/pygeofetch/core/cache_manager.py +288 -0
  27. pygeofetch-1.0.0/pygeofetch/core/downloader.py +354 -0
  28. pygeofetch-1.0.0/pygeofetch/core/engine.py +336 -0
  29. pygeofetch-1.0.0/pygeofetch/core/scheduler.py +473 -0
  30. pygeofetch-1.0.0/pygeofetch/core/searcher.py +341 -0
  31. pygeofetch-1.0.0/pygeofetch/models/__init__.py +44 -0
  32. pygeofetch-1.0.0/pygeofetch/models/download_task.py +283 -0
  33. pygeofetch-1.0.0/pygeofetch/models/satellite_data.py +402 -0
  34. pygeofetch-1.0.0/pygeofetch/models/search_query.py +329 -0
  35. pygeofetch-1.0.0/pygeofetch/models/user_auth.py +123 -0
  36. pygeofetch-1.0.0/pygeofetch/processing/__init__.py +15 -0
  37. pygeofetch-1.0.0/pygeofetch/processing/base.py +102 -0
  38. pygeofetch-1.0.0/pygeofetch/processing/batch.py +164 -0
  39. pygeofetch-1.0.0/pygeofetch/processing/indices.py +777 -0
  40. pygeofetch-1.0.0/pygeofetch/processing/pipeline.py +328 -0
  41. pygeofetch-1.0.0/pygeofetch/processing/postprocessor.py +567 -0
  42. pygeofetch-1.0.0/pygeofetch/processing/preprocessor.py +989 -0
  43. pygeofetch-1.0.0/pygeofetch/processing/sar.py +315 -0
  44. pygeofetch-1.0.0/pygeofetch/providers/__init__.py +192 -0
  45. pygeofetch-1.0.0/pygeofetch/providers/airbus_oneatlas.py +150 -0
  46. pygeofetch-1.0.0/pygeofetch/providers/alaska_satellite_facility.py +150 -0
  47. pygeofetch-1.0.0/pygeofetch/providers/aws_earth.py +267 -0
  48. pygeofetch-1.0.0/pygeofetch/providers/base.py +306 -0
  49. pygeofetch-1.0.0/pygeofetch/providers/copernicus.py +487 -0
  50. pygeofetch-1.0.0/pygeofetch/providers/digitalglobe.py +150 -0
  51. pygeofetch-1.0.0/pygeofetch/providers/earth_explorer_additional.py +150 -0
  52. pygeofetch-1.0.0/pygeofetch/providers/element84.py +230 -0
  53. pygeofetch-1.0.0/pygeofetch/providers/esa_scihub.py +150 -0
  54. pygeofetch-1.0.0/pygeofetch/providers/geoserver_generic.py +150 -0
  55. pygeofetch-1.0.0/pygeofetch/providers/google_earth_engine.py +150 -0
  56. pygeofetch-1.0.0/pygeofetch/providers/inpe_cbers.py +150 -0
  57. pygeofetch-1.0.0/pygeofetch/providers/isro_bhuvan.py +150 -0
  58. pygeofetch-1.0.0/pygeofetch/providers/jaxa_earth.py +150 -0
  59. pygeofetch-1.0.0/pygeofetch/providers/maxar_gbdx.py +150 -0
  60. pygeofetch-1.0.0/pygeofetch/providers/nasa_earthdata.py +160 -0
  61. pygeofetch-1.0.0/pygeofetch/providers/nasa_earthdata_cloud.py +345 -0
  62. pygeofetch-1.0.0/pygeofetch/providers/noaa_big_data.py +150 -0
  63. pygeofetch-1.0.0/pygeofetch/providers/opentopography.py +108 -0
  64. pygeofetch-1.0.0/pygeofetch/providers/planet.py +369 -0
  65. pygeofetch-1.0.0/pygeofetch/providers/planetary_computer.py +295 -0
  66. pygeofetch-1.0.0/pygeofetch/providers/sentinel_hub.py +173 -0
  67. pygeofetch-1.0.0/pygeofetch/providers/terrabotics.py +278 -0
  68. pygeofetch-1.0.0/pygeofetch/providers/usgs.py +454 -0
  69. pygeofetch-1.0.0/pygeofetch/utils/__init__.py +50 -0
  70. pygeofetch-1.0.0/pygeofetch/utils/file_utils.py +275 -0
  71. pygeofetch-1.0.0/pygeofetch/utils/geo_utils.py +241 -0
  72. pygeofetch-1.0.0/pygeofetch/utils/logging_setup.py +107 -0
  73. pygeofetch-1.0.0/pygeofetch/utils/retry_handler.py +225 -0
  74. pygeofetch-1.0.0/pygeofetch/utils/validators.py +155 -0
  75. {pygeofetch-0.1.0 → pygeofetch-1.0.0}/pyproject.toml +24 -28
  76. pygeofetch-0.1.0/PKG-INFO +0 -720
  77. pygeofetch-0.1.0/PyGeoFetch.egg-info/PKG-INFO +0 -720
  78. pygeofetch-0.1.0/PyGeoFetch.egg-info/SOURCES.txt +0 -11
  79. pygeofetch-0.1.0/PyGeoFetch.egg-info/entry_points.txt +0 -2
  80. pygeofetch-0.1.0/PyGeoFetch.egg-info/top_level.txt +0 -1
  81. pygeofetch-0.1.0/README.md +0 -637
  82. {pygeofetch-0.1.0 → pygeofetch-1.0.0}/PyGeoFetch.egg-info/dependency_links.txt +0 -0
  83. {pygeofetch-0.1.0 → pygeofetch-1.0.0}/PyGeoFetch.egg-info/not-zip-safe +0 -0
  84. {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 PyGeoFetch Contributors
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