Skip to content

Commit

Permalink
Merge pull request #758 from norlandrhagen/kerchunk_engine_opener
Browse files Browse the repository at this point in the history
Kerchunk engine opener
  • Loading branch information
norlandrhagen authored Oct 23, 2024
2 parents a257b85 + c3a4658 commit 7a9b5c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions pangeo_forge_recipes/openers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def open_url(
FileType.zarr: dict(engine="zarr"),
FileType.opendap: dict(engine="netcdf4"),
FileType.grib: dict(engine="cfgrib"),
FileType.kerchunk: dict(engine="kerchunk"),
}


Expand Down
5 changes: 3 additions & 2 deletions pangeo_forge_recipes/patterns.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,12 @@ def _generate_next_value_(name, start, count, last_values):


class FileType(AutoName):
unknown = auto()
grib = auto()
kerchunk = auto()
netcdf3 = auto()
netcdf4 = auto()
grib = auto()
opendap = auto()
unknown = auto()
zarr = auto()


Expand Down

0 comments on commit 7a9b5c5

Please sign in to comment.