-
Notifications
You must be signed in to change notification settings - Fork 15
Support for GeoTIFF #173
Comments
GeoTIFF can now be read from xarray through it's rasterio backend: pydata/xarray#1260 |
Hi @forman the geoTiff reader is almost ready but i have a question about normalization. In addition we can transform the point x,y into a longitude and latitude values adding this data into the dataset itself providing an output with this structure:
lon and lat are now present in the output but they are not dimensions, to normalize the structure in order to allow the mapping on the globe we should provide lon, lat and time as dimensions. we can try to aggregate the similar values of a single dimension in order to reduce the size [ there are a lot or repeated value in lon and lat indeed] but this phase is process consuming and it is function of the image size and number of bands. Following this direction we could generate a fully normalized dataset which could be mapped and used like a normal netCDF dataset otherwise i think is only possible to show the dataset as an image. |
Cate should be able to also read product files which use GeoTIFF format.
Implementation: We'll need some package capable of reading TIFF/GeoTIFF, e.g. GDAL, to read the files and create object that behave similar to
xarray.Dataset
instances created from netCDF (used by the other CCI gridded products). In the ideal case, we can develop or reuse an xarray backend for the TIFF package.See
The text was updated successfully, but these errors were encountered: