Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions python/mlcroissant/mlcroissant/_src/geo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""Geospatial extensions for mlcroissant.

This module provides functionality for working with geospatial datasets,
including converters for NASA UMM-G and STAC to GeoCroissant format.
"""

from .nasa_umm_converter import umm_to_geocroissant
from .stac_converters import stac_to_geocroissant

__all__ = ["umm_to_geocroissant", "stac_to_geocroissant"]
1,350 changes: 1,350 additions & 0 deletions python/mlcroissant/mlcroissant/_src/geo/demo/nasa_umm_conversion.ipynb

Large diffs are not rendered by default.

910 changes: 910 additions & 0 deletions python/mlcroissant/mlcroissant/_src/geo/demo/stac_conversion.ipynb

Large diffs are not rendered by default.

Loading