Releases: creare-com/podpac
Releases · creare-com/podpac
3.5.2
3.5.1
3.5.1 Method Rename in Rasterio Source Window Coordinates HOTFIX
Hotfix
- Changed method name
_get_window_coords_slc
to_get_window_coords
3.5.0
3.4.1 Point Probe Value Format for Enumerated Legends HOTFIX
Hotfix
- Deals with 'nan' value for enumerated legends.
3.4.0 Point Probe Value Format Improvement
Features
- Adds the label next to the value for enumerated legends in the point prober
podpac.core.utils.probe_node
.- Before: "value": 1.0
- After: "value": "1 (Sand)"
HotFIX: timedelta64
3.3.1
Hotfix
- Can now use
np.timedelta64
as a valid type for coordinates (merge issues on 3.3.0 accidentally removed this feature)
3.3.0 Release
3.3.0
Features
- Now supporting custom coordinate dimensions for downstream applications. Just use podpac.utils.add_valid_dimension("my_dimension_name") to register and start using your custom dimension name.
- Can now use np.timedelta64 as a valid type for coordinates
Maintenance
- Removed the "datalib" module, and made it its own package podpacdatalib.
3.2.2
HOTFIX for coordinate select when bounds are between coordinates.
3.2.1
3.2.1
Bugfixes
- Fixed documentation build
- Fixed nearest neighbor interpolation bug where same pixel could
give different values due to rounding ambiguity (0.5-->0, 1.5-->2)
3.2.0
Features
- Added the "none" interpolator, which disables the Interpolation node of Mixin
- Enabled nearest-neighbor interpolation for N-D stacked coordinates (#488)
- Implemented Xarray interpolation for dependent coordinates (multi-dimensional stacked coordinates)
- Improved caching
- Extra diemnsions are discarded when caching datasource and compositor outputs
- Added CRS-agnostic caching
- Added utility function that generates a JSON spec of available PODPAC nodes. This spec can be used to make UI elements
- Added the
get_source_data
method forDatasource
nodes to bypass interpolation (#485) - Added the
get_bounds
method toNode
to retrieve the coordinate bounds (#486) - Added
Node
point prober features that will evaluate every node in a pipeline at a point and record its value. Useful for debugging complex pipelines. - Added
AffineCoorindates
(#491) these are stacked spatial shaped coordinates that are parameterized by ageotransform
. ReplacesRotatedCoordinates
. OGC.WCS
Node
can now handle multi-band geotiffs
Bugfixes
- Fixed a number of floating point coordinates discrepancies
Rasterio
node will no longer attempt to use overviews when no overviews are present.- Fixed
geotransform
shape transpose error - Fixed numpy deprecation of using
list
indices - Fixed regressions due to dependency updates