v0.11.0
Release Notes
New Features
- Function
gtiff2xarrayreturns a parallelizedxarray.Datasetorxarray.DataAraaythat can handle large responses much more efficiently. This is achieved usingdask.
Breaking Changes
- Drop support for Python 3.6 since many of the dependencies such as
xarrayandpandashave done so. - Refactor
MatchCRS. Now, it should be instantiated by providing the
in and out CRSs like so:MatchCRS(in_crs, out_crs). Then its methods, namely,geometry,boundsandcoords, can be called. These methods now have only one input, geometry. - Change input and output types of
MatchCRS.coordsfrom tuple of
lists of coordinates to list of(x, y)coordinates. - Remove
xarray_maskandgtiff2filesincerioxarrayis more
general and suitable.
Internal Changes
- Remove unnecessary type checks for private functions.
- Refactor
json2geodfto improve robustness. Usegetmethod of
dictfor checking key availability.