RichardScottOZ

Results 320 comments of RichardScottOZ

No, a dataset for analysis mostly, not for people to look at in the eyeball sense [although of course that is nice too if can tile it for a WMS...

As I understand it though @mdsumner - Make a vector dataset with the bounds of each raster in geometry field and the location field is the file path - GTI...

> imagine persisting the final combined collection-dates Xarray/zarr dataset would be ideal given resources/time used to reproject/resample Yes - GTI = new, so no-one knows how long this is likely...

Ok, I create a geopackage [with I create with EPSG:6933 as a test] with the required fields, then ```bash ogr2ogr -f GPKG -mo SRS=EPSG:4326 -mo RESX=10000 -mo RESY=10000 output.gti.gpkg testgti.gpkg...

```bash gdalinfo output.gti.gpkg Driver: GTI/GDAL Raster Tile Index Files: output.gti.gpkg output.gti.gpkg.aux.xml Size is 2321, 27326 Coordinate System is: PROJCRS["WGS 84 / NSIDC EASE-Grid 2.0 Global", BASEGEOGCRS["WGS 84", ENSEMBLE["World Geodetic System...

Yes, I have seen this error recently too.

Much better in what sense for the layperson Leo?

I can make a more complete thing later today with a bit of luck

> I'm working on a rewrite of our TIFF virtualization over in [#524](https://github.com/zarr-developers/VirtualiZarr/pull/524), since this has been broken for a long while. Are you able to share what file you're...

```python import os import configparser import contextlib import xarray as xr from virtualizarr import open_virtual_dataset def get_aws_credentials(): parser = configparser.RawConfigParser() parser.read(os.path.expanduser('~/.aws/credentials')) credentials = parser.items('default') all_credentials = {key.upper(): value for key,...