-
Notifications
You must be signed in to change notification settings - Fork 4
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
CF issues related to euro cordex datasets (CF errata) #17
Comments
|
it's actually all This is also an inssue in the CDS. |
see also https://errata.es-doc.org |
thanks @jwohland for this detailed report! that's really a mess 😠 |
I tried to report issues to es-doc once but i failed miserably, here is the reply i got from [email protected] in case we want to report: To get the proper format and syntax, ideally head over to your nearest ESGF data node and search for the dataset in question. You'll find the dataset identifier under the id metadata key. |
alaro = cx.tutorial.open_dataset("tas_EUR-11_ECMWF-ERAINT_evaluation_r1i1p1_RMIB-UGent-ALARO-0_v1_mon_198001-198012")
alaro The units of alaro['x'] = alaro.x * 1000.
alaro['y'] = alaro.y * 1000.
import cartopy.crs as ccrs
transform = ccrs.LambertConformal(central_longitude=9.9, central_latitude=49.0,
false_easting=0.0, false_northing=0.0,
secant_latitudes=None, standard_parallels=None,
globe=None, cutoff=-30)
import cartopy.feature as cf
import matplotlib.pyplot as plt
plt.figure(figsize=(10,8))
ax = plt.axes(projection=transform)
ax.gridlines(draw_labels=True, linewidth=0.5, color='gray',
xlocs=range(-180,180,10), ylocs=range(-90,90,5))
alaro.tas.isel(time=0).plot(ax=ax, transform=transform)
ax.coastlines(resolution='50m', color='black', linewidth=1)
ax.add_feature(cf.BORDERS) |
EUR-11.MIROC-MIROC5.UHOH.UHOH-WRF361H.historical.mon
this datasets seems to have wrong coordinate definitions, e.g., tas has
lon
,lat
coordinates inrcp85
while it hasrlon
,rlat
inhistorical
.dset_dict['EUR-11.MIROC-MIROC5.UHOH.UHOH-WRF361H.rcp85.mon']
The text was updated successfully, but these errors were encountered: