-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
incorrect coordinate when export ERA5L #171
Comments
According to the comments of Alexander-Barth, (the developer of NCDatasets.jl). The netcdf that xee exported has the following format errors:
double lon(lon) ;
lon:_FillValue = NaN ;
double lat(lat) ;
lat:_FillValue = NaN ;
netcdf xee-test {
dimensions:
time = 10 ;
lon = 78 ;
lat = 48 ;
variables:
float surface_net_solar_radiation(time, lon, lat) ;
surface_net_solar_radiation:_FillValue = NaNf ;
surface_net_solar_radiation:id = "surface_net_solar_radiation" ;
surface_net_solar_radiation:data_type = "{\'type\': \'PixelType\', \'precision\': \'double\'}" ;
surface_net_solar_radiation:dimensions = 3601LL, 1801LL ;
surface_net_solar_radiation:crs = "EPSG:4326" ;
surface_net_solar_radiation:crs_transform = 0.1, 0., -180.05, 0., -0.1, 90.05 ;
surface_net_solar_radiation:scale_factor = 0.1 ;
surface_net_solar_radiation:bounds = 108.5, 28.75, 116.25, 33.5603826424351 ;
[...] see details at JuliaGeo/NCDatasets.jl#265 |
Xee's I started a discussion on whether to update the dimension ordering: #196 |
I faced with a strange issue. It seems that lon and lat is confused (lon becomes lat, lat becomes lon).
Inspect in R:
The text was updated successfully, but these errors were encountered: