ivert 0.6.0__py3-none-any.whl

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 (45) hide show
  1. ivert/__init__.py +18 -0
  2. ivert/_version.py +4 -0
  3. ivert/cli.py +999 -0
  4. ivert/client_upgrade.py +22 -0
  5. ivert/coastline_mask.py +218 -0
  6. ivert/config/ivert_defaults.ini +102 -0
  7. ivert/convert_error_tif_to_vector.py +57 -0
  8. ivert/export_vector.py +268 -0
  9. ivert/icesat2_database_v2.py +1330 -0
  10. ivert/icesat2_requests.py +220 -0
  11. ivert/ivert_jobs.py +62 -0
  12. ivert/plot_photon_clouds_v2.py +605 -0
  13. ivert/plot_results_slope_centrality.py +241 -0
  14. ivert/plot_validation_results.py +720 -0
  15. ivert/transform_points.py +169 -0
  16. ivert/utils/__init__.py +0 -0
  17. ivert/utils/bcolors.py +25 -0
  18. ivert/utils/configfile.py +403 -0
  19. ivert/utils/create_empty_tiff.py +28 -0
  20. ivert/utils/cuboid_funcs.py +565 -0
  21. ivert/utils/dem_geom.py +190 -0
  22. ivert/utils/fetch_text.py +108 -0
  23. ivert/utils/is_aws.py +23 -0
  24. ivert/utils/is_conda.py +15 -0
  25. ivert/utils/is_email.py +37 -0
  26. ivert/utils/list_photon_tiles.py +49 -0
  27. ivert/utils/loggerproc.py +141 -0
  28. ivert/utils/parallel_funcs.py +277 -0
  29. ivert/utils/pickle_blosc.py +19 -0
  30. ivert/utils/progress_bar.py +116 -0
  31. ivert/utils/pyproj_funcs.py +188 -0
  32. ivert/utils/query_yes_no.py +50 -0
  33. ivert/utils/sizeof_format.py +20 -0
  34. ivert/utils/split_dem.py +131 -0
  35. ivert/utils/traverse_directory.py +78 -0
  36. ivert/utils/unformat_text.py +39 -0
  37. ivert/utils/version.py +7 -0
  38. ivert/validate_dem.py +1864 -0
  39. ivert/validate_dem_collection.py +534 -0
  40. ivert/vdatum_lookup.py +235 -0
  41. ivert-0.6.0.dist-info/METADATA +133 -0
  42. ivert-0.6.0.dist-info/RECORD +45 -0
  43. ivert-0.6.0.dist-info/WHEEL +4 -0
  44. ivert-0.6.0.dist-info/entry_points.txt +2 -0
  45. ivert-0.6.0.dist-info/licenses/LICENSE +21 -0
ivert/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ import os
2
+ import sys
3
+
4
+ try:
5
+ from ivert._version import __version__
6
+ except ImportError:
7
+ # Fallback when using the package from source without installing
8
+ # in editable mode with pip (nobody should do this):
9
+ # <https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs>
10
+ import warnings
11
+
12
+ warnings.warn(
13
+ "Importing 'ivert' outside a proper installation."
14
+ " It's highly recommended to install the package from a stable release or"
15
+ " in editable mode.",
16
+ stacklevel=2,
17
+ )
18
+ __version__ = "dev"
ivert/_version.py ADDED
@@ -0,0 +1,4 @@
1
+ # This file is auto-generated by Hatchling. As such, do not:
2
+ # - modify
3
+ # - track in version control e.g. be sure to add to .gitignore
4
+ __version__ = VERSION = '0.6.0'