Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

__init__.py 970 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  1. import importlib.resources
  2. import logging
  3. import intake
  4. import deepicedrain
  5. from deepicedrain.deltamath import calculate_delta, nan_linregress, nanptp
  6. from deepicedrain.extraload import (
  7. array_to_dataframe,
  8. ndarray_to_parquet,
  9. split_tracks,
  10. wide_to_long,
  11. )
  12. from deepicedrain.lake_algorithms import find_clusters, ice_volume_over_time
  13. from deepicedrain.spatiotemporal import (
  14. Region,
  15. deltatime_to_utctime,
  16. lonlat_to_xy,
  17. point_in_polygon_gpu,
  18. spatiotemporal_cube,
  19. )
  20. from deepicedrain.vizplots import (
  21. IceSat2Explorer,
  22. plot_alongtrack,
  23. plot_crossovers,
  24. plot_icesurface,
  25. )
  26. __version__: str = "0.4.2"
  27. # Loads the ICESat-2 ATLAS intake data catalog
  28. _catalog_path = importlib.resources.path(
  29. package=deepicedrain, resource="atlas_catalog.yaml"
  30. )
  31. with _catalog_path as uri:
  32. logging.info(f"Loading intake catalog from {uri}")
  33. catalog: intake.catalog.local.YAMLFileCatalog = intake.open_catalog(uri=str(uri))
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...