-
Notifications
You must be signed in to change notification settings - Fork 228
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
Refactor _load_remote_dataset to write CRS information for raster images #3678
Conversation
ChatGPT said yes to both questions. @weiji14 I guess you're more familiar with CRS, so what do you think? |
Grids can have a CRS attached yes. But how it should be set in So I would try to avoid adding CRS to grids in PyGMT for now (until the xarray community agrees on a standard) to avoid having to rewrite it later. The reason we have added CRS to 3-band images (for
Probably fine to keep those two attributes, even if we decide to set the CRS (more metadata is better than less metadata). A CRS doesn't necessarily specify a horizontal and/or vertical datum if I'm not mistaken (looking at some PROJ examples). More specifically, the CRS (assuming PROJ.4 syntax) should have the
CF-compliance is tricky... There is a
So we would need to set all 4 attributes if following CF-convention 🙂 |
OK, we can wait to see when the community can agree about the ".crs" accessor. Currently, this PR adds the OK with these changes? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, ok with the changes keeping things DRY.
Write CRS information in
_load_remote_dataset
, so that we don't have to repeat it inload_blue_marble
/load_black_marblue
.I have very little knowledge about CRS, datums or geodesy stuff, so here are my questions:
CRS
for grids, rather than just images?horizontal_datum
andvertical_datum
. These attributes were added since the start of the project (Add metadata to Earth relief grids #248). As far as I can see, these attributes are not standard attributes in CF-convention (https://cfconventions.org/Data/cf-conventions/cf-conventions-1.8/cf-conventions.html), and they are part of the CRS. So, perhaps we should remove these two attributes?