Skip to content
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

Add more for stats branch #1018

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update
  • Loading branch information
lee1043 committed Jan 4, 2024
commit e5eaecdf6c874bd3d548cfcab0bc7b5ea79416c4
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ def select_subset(
"""
sel_keys = {}
if lat is not None:
lat_key = get_lat_key(ds)
lat_key = get_lat_key(ds)
sel_keys[lat_key] = slice(*lat)
if lon is not None:
lon_key = get_lon_key(ds)
lon_key = get_lon_key(ds)
sel_keys[lon_key] = slice(*lon)
if time is not None:
time_key = get_time_key(ds)
Expand Down