-
Notifications
You must be signed in to change notification settings - Fork 228
Store first tile as source encoding for tiled grids #3950
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
Conversation
# Full path to the grid | ||
source: str | list = which(fname, download="a") | ||
if resinfo.tiled: | ||
source = sorted(source)[0] # get first grid for tiled grids | ||
# Manually add source to xarray.DataArray encoding to make the GMT accessors work. | ||
if source: | ||
grid.encoding["source"] = source |
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.
Could add verbose="q"
to the which
call here, and probably remove the if source:
line, but doesn't really matter if it's all gonna go away after the refactor to use xr.load_dataarray
in #3932.
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.
I prefer to have verbose="d" added and if source removed, so that this PR is fully functional on its own.
Co-authored-by: Dongdong Tian <[email protected]>
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.
Looks good except one minor edit.
Co-authored-by: Dongdong Tian <[email protected]>
Description of proposed changes
Tiled remote dataset grids used to have an undefined
grid.encoding["source"]
because there was a list of grids returned frompygmt.which
, and we did not select any one. The change here means that we setgrid.encoding["source"]
to the first grid in the list (sorted alphabetically).This means that slicing
xarray.DataArray
tiled grids should return proper GMT AccessorGridType
andGridRegistration
values, because the source file can be queried usinggrdinfo
to get the values.Addresses #3932 (comment) and #524
Reminders
make format
andmake check
to make sure the code follows the style guide.doc/api/index.rst
.Slash Commands
You can write slash commands (
/command
) in the first line of a comment to performspecific operations. Supported slash command is:
/format
: automatically format and lint the code