Skip to content

Commit

Permalink
adds kerchunk opener
Browse files Browse the repository at this point in the history
  • Loading branch information
norlandrhagen authored and moradology committed Jun 24, 2024
1 parent a11d21f commit bce7342
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 bce7342

Please sign in to comment.