Releases: arthur-e/pyl4c
Improved Calibration and Simulation APIs
Full Changelog: 0.16.0...0.18.1
New BPLUT interchange format
The function pyl4c.data.fixtures.restore_bplut()
returns a dictionary representation of the Biome Properties Lookup Table (BPLUT) that looks something like:
"vpd": array([[...],
[...]])
...
For parameters that define the slope of ramp functions on fields like VPD, minimum temperature, etc. This format (above) uses a multi-dimensional numpy.ndarray
where the first axis enumerates each parameter of the ramp function.
Now, for compatibility with newer libraries and applications, a flatter format is proposed:
{
"vpd0": [...],
"vpd1": [...],
...
Where [...]
could be a 1D numpy.ndarray
or a flat sequence.
Full Changelog: 0.15.0...0.16.0
Support for downscaling NASA AppEEARS granules
In pyl4c.apps.resample
, it is now possible, using NestedGrid.downscale_netcdf_by_pft()
, to downscale L4C data downloaded from NASA AppEEARS.
Full Changelog: v0.14.1...0.15.0
Latest and greatest
This is mostly porting some code over from the private version of pyl4c
but also several minor code revisions and future-proofing changes.
Full Changelog: v0.13.0...v0.14.1
v0.13.0
Full Changelog: v0.12.0.dev...v0.13.0
v0.12.0.dev
The initial public release.