Skip to content

Commit

Permalink
fix shapefile subsetting if there is a third dimension in shapefile
Browse files Browse the repository at this point in the history
  • Loading branch information
sliu008 committed Jan 2, 2024
1 parent 160973a commit 8bf51d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated
### Removed
### Fixed
- Fix shapefile subsetting if there is more than a 2d in lon lat in shapefile that includes a third dimension
### Security


Expand Down
2 changes: 1 addition & 1 deletion podaac/subsetter/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ def subset_with_shapefile(dataset: xr.Dataset,
shapefile_df.geometry = shapefile_df['geometry'].apply(translate_longitude)

# Mask and scale shapefile
def scale(lon, lat):
def scale(lon, lat, extra=None):
lon = tuple(map(functools.partial(apply_scale_offset, lon_scale, lon_offset), lon))
lat = tuple(map(functools.partial(apply_scale_offset, lat_scale, lat_offset), lat))
return lon, lat
Expand Down

0 comments on commit 8bf51d0

Please sign in to comment.