Skip to content

Releases: creare-com/podpac

3.5.2

15 Oct 17:34
Compare
Choose a tag to compare

3.5.2

Bugfixes

  • Corrected issue with algorithm coordinate alignment implementation

3.5.1

18 Sep 17:55
Compare
Choose a tag to compare

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

28 Jun 18:28
Compare
Choose a tag to compare

3.5.0

Features

  • Allows users to specify the name of a node when serializing to json #517
  • Allows users to specify custom style class in json node definition #517

Bugfixes

  • Matplotlib colormap deprecation fix #518
  • Fixed incorrect overview selection in rasterio #519

3.4.1 Point Probe Value Format for Enumerated Legends HOTFIX

04 Mar 16:47
Compare
Choose a tag to compare

Hotfix

  • Deals with 'nan' value for enumerated legends.

3.4.0 Point Probe Value Format Improvement

01 Mar 20:29
Compare
Choose a tag to compare

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

03 Jan 16:43
Compare
Choose a tag to compare

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

02 Jan 15:55
Compare
Choose a tag to compare

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

13 Sep 14:49
Compare
Choose a tag to compare

HOTFIX for coordinate select when bounds are between coordinates.

3.2.1

24 May 15:55
Compare
Choose a tag to compare

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

28 Dec 13:34
Compare
Choose a tag to compare

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 for Datasource nodes to bypass interpolation (#485)
  • Added the get_bounds method to Node 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 a geotransform. Replaces RotatedCoordinates.
  • 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