Sandor Kertesz
Sandor Kertesz
If `ds` is a GRIB filedlist, using `sel()` for the `date` key only works when it is specified as an `int`: ```python ds.sel(date=20230510) ``` However, ideally e.g. these should also...
The "constants" source should have a more meaningful name. Some suggestions: - forcing_variables - generate - generated_variables
This issue was created to discuss the possible support for geotiff in earthkit-data.
Sometimes reading a small NetCDF file (< 2 Mb) as a fieldlist takes a very long time. There is one particular example reported to be very slow to read: https://get.ecmwf.int/repository/test-data/earhtkit-data/test-data/htessel_points.nc...
The main purpose of gridspec is to describe the grid structure of a field. Requirements: - dict-like object - should follow the MARS vocabulary whenever possible using keywords like [grid](https://confluence.ecmwf.int/pages/viewpage.action?pageId=123799065)...
This is the discussion about adding support for vector fields (e.g. wind) in earthkit-data.
At the moment we can access latitudes/longitudes on a **GribField** as follows (`ds` is a FieldList in the examples below): This call returns a dict: `{"lat": array, "lon": array}` ```python...
### Is your feature request related to a problem? Please describe. _No response_ ### Describe the solution you'd like [t2_prec_obs.nc](https://get.ecmwf.int/repository/test-data/earthkit-data/test-data/t2_prec_obs.nc) is a NetCDF file containing 1D data (e.g. observations), but...
This will be the first implementation of a `to_geopandas()` method in earthkit-data. Things to consider: * BUFR data extraction is based on`pdbufr`, which can extract the `geometry` and `crs` columns...