dask-geomodeling


Namedask-geomodeling JSON
Version 2.4.4 PyPI version JSON
download
home_pagehttps://github.com/nens/dask-geomodeling
SummaryOn-the-fly operations on geographical maps.
upload_time2024-01-17 17:03:25
maintainer
docs_urlNone
authorCasper van der Wel
requires_python>=3.7
licenseBSD 3-Clause License
keywords dask
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            dask-geomodeling
==========================================

.. image:: https://readthedocs.org/projects/dask-geomodeling/badge/?version=latest
     :target: https://dask-geomodeling.readthedocs.io/en/latest/?badge=latest

.. image:: https://github.com/nens/dask-geomodeling/actions/workflows/test.yml/badge.svg
    :target: https://github.com/nens/dask-geomodeling/actions/workflows/test.yml

.. image:: https://badge.fury.io/py/dask-geomodeling.svg
    :target: https://badge.fury.io/py/dask-geomodeling

.. image:: https://anaconda.org/conda-forge/dask-geomodeling/badges/version.svg
    :target: https://anaconda.org/conda-forge/dask-geomodeling

Dask-geomodeling is a collection of classes that are to be stacked together to
create configurations for on-the-fly operations on geographical maps. By
generating `Dask <https://dask.pydata.org/>`_ compute graphs, these operation
may be parallelized and (intermediate) results may be cached.

Multiple Block instances together make a view. Each Block has the ``get_data``
method that fetches the data in one go, as well as a ``get_compute_graph``
method that creates a graph to compute the data later.

`Read the docs <https://dask-geomodeling.readthedocs.org/>`_ for further information.


Changelog of dask-geomodeling
===================================================

2.4.4 (2024-01-17)
------------------

- Fix Place block.


2.4.3 (2023-06-01)
------------------

- Fixed an edge case in TemporalAggregate / Cumulative for month start ("MS") frequency.


2.4.2 (2023-05-31)
------------------

- Fixed TemporalAggregate and Cumulative for month start ("MS") frequency.


2.4.1 (2023-04-18)
------------------

- AggregateRaster will do a point request to the raster if only 1 cell is required
  (instead of a box request that encompasses the cell).


2.4.0 (2023-04-13)
------------------

- Change Block.get_data; instead of always computing in the main thread, use
  the scheduler that is setup via dask.config.


2.3.13 (2023-04-04)
-------------------

- Expand AggregateRaster for usage on points (and other geometries that are
  smaller than a cell).


2.3.12 (2022-11-28)
-------------------

- Perform more geometry transformations via pyproj (see 2.3.11 notes).

- The .geometry property of elementwise, reduction and combine RasterBlocks is
  now computed through the extents of the arguments (and will always be a box). 


2.3.11 (2022-11-22)
-------------------

- Perform geometry transformations via pyproj instead of GDAL SWIG bindings to circumvent
  a performance degradation in GDAL >=3 (PROJ >=6).

- Drop support for Python 3.6 and GDAL 2.


2.3.10 (2022-08-22)
-------------------

- Fixed compatibility with GDAL 3.4.

- Fixed compatibility with shapely 2 (PyGEOS merge).


2.3.9 (2022-03-07)
------------------

- TemporalAggregate now correctly incorporates time resolution in retrieval of timekeys.


2.3.8 (2022-02-18)
------------------

- Fixed proper propagation of time resolution through AggregateRaster


2.3.7 (2022-02-08)
------------------

- Fixed raster.Max not handling "time" and "meta" modes.


2.3.6 (2022-02-04)
------------------

- Reverted changes to elemwise.


2.3.5 (2022-02-02)
------------------

- Added raster.Max block to select the maximum value from overlapping sources.

- Made Elemwise blocks more strict regarding source periods.

- Drop python 3.5 support and move on other version requirements.

- Fix deprecation warning with distutils.


2.3.4 (2021-02-08)
------------------

- Added a default setting "raster-limit-timesteps".


2.3.3 (2020-12-11)
------------------

- Fix field_operations.Classify if used with int-typed labels. A NaN value in
  the result resulted in a Categorical output dtype. To fix this, Classify
  now returns floats also when input labels are integers. (#82)


2.3.2 (2020-11-19)
------------------

- Make Dilate arguments JSON serializable. (#81)


2.3.1 (2020-11-10)
------------------

- Never return Categorical dtypes in the field_operations.Classify and
  ClassifyFromColumns. This leads to pandas incompatibilities with later
  operations (round, subtract, where, mask).

- Never return Categorical dtypes from ParseTextColumn. (#79)

- field_operations.Where and field_operations.Mask now also allow non-boolean
  conditionals. This was already the case for Where on pandas == 0.19.*. (#78)


2.3.0 (2020-10-09)
------------------

- Added Exp, Log and Log10 RasterBlocks.

- Added "std" and "var" statistics to TemporalAggregate.


2.2.12 (2020-09-29)
-------------------

- Fixed point requests for RasterizeWKT.

- Allow empty coordinate list in Place.


2.2.11 (2020-09-01)
-------------------

- Make transformation exceptions more comprehensible.

- Check for matching time resolutions in raster.Clip.

- Added 'product' to raster.reduction STATISTICS.

2.2.10 (2020-07-29)
-------------------

- Fix point requests in raster.Smooth.

- GDAL 3 compatibility fixes.


2.2.9 (2020-06-23)
------------------

- Implemented `RasterTiler`.

- Let raster.Mask accomodate int values larger than uint8.


2.2.8 (2020-06-12)
------------------

- Accept categorical values in GeometryFileSink / to_file.

- Fixed incompatibilities with geopandas >=0.7.

- GeoJSON output is always converted to EPSG:4326 and doesn't have "crs" field.

- Implemented raster.reduction.reduce_rasters.

- Added the 'statistics' argument to raster.spatial.Place to deal with
  overlapping features. 

- Allow point requests in raster.spatial.Place.

- Clarifications about raster cell validity ranges in MemorySource and
  RasterFileSource.


2.2.7 (2020-04-30)
------------------

- Accept list and dict values in GeometryFileSink / to_file.

- Fix bug in ParseTextColumn that added columns in duplicate when outputting
  into the input column.


2.2.6 (2020-04-28)
------------------

- Fixed bug in `FillNoData` block.

- Fixed bug in `AggregateRasterAboveThreshold` (introduced in #37) (#44).


2.2.4 (2020-03-25)
------------------

- Allow up to 1E-7 in the GeoTransform 'tilt' terms to account for possible
  float32 imprecision.

- Handle Nones in geometry.field_operations.Classify and ClassifyFromColumns.

- Validate if labels are unique in geometry.field_operations.Classify and
  ClassifyFromColumns.
  
  - Added raster.spatial.Place.


2.2.3 (2020-02-28)
------------------

-  Fix AggregateRaster: it now returns NaN for no data pixels (#37)


2.2.2 (2020-02-13)
------------------

- Added GeometryWKTSource.

- Updated all docstrings.

- Renamed the 'location' parameter of raster.misc.Step to 'value'.


2.2.1 (2020-02-04)
------------------

- Suppressed "invalid value encountered in greater than" warning in
  ClassifyFromColumns.

- Compatibility fixes for pandas 1.0.0.

- Implemented raster.RasterizeWKT


2.2.0 (2019-12-20)
------------------

- utils.get_crs now leaves EPSG codes instead of converting them to their Proj4
  representation.

- Implemented GeometryFileSink that writes ESRI Shapefile, GeoJSON, GML, and
  geopackage.

- Added a .to_file() method to all GeometryBlocks.

- Added dry_run parameter (for validation) to .to_file().

- Start using google docstring convention.

- Several minor doc fixes.

- Fix setting of the .crs property in the GeometryFileSource.

- Fixed serialization of raster.Classify.


2.1.1 (2019-12-06)
------------------

- Fix empty response of TemporalAggregate and Cumulative.

- Fix elementwise raster blocks in case of empty datasets.


2.1.0 (2019-11-15)
------------------

- Added RasterFileSource.close_dataset to close the GDAL file handle.

- Run unittests on windows.

- Adapt safe_abspath and safe_file_url functions: they now automatically
  interpret the geomodeling.root config instead of the 'start' kwarg.

- Added a geomodeling.strict-file-paths that defaults to False. This changes
  the default behaviour of all blocks that handle file paths: by default, the
  path is not required to be in geomodeling.root.

- Added installation instructions for windows.

- Improved the ipyleaflet plugin so that it can deal with multiple notebook
  servers on the same machine. The parameter 'hostname' was replaced by 'url'.


2.0.4 (2019-11-01)
------------------

- Fixed propagation of the 'extent' and 'geometry' attributes through the
  raster.Clip. Both now return the intersection of the store and mask rasters.

- The MemorySource and elementwise blocks now return None for 'extent' and
  'geometry' if they are empty.

- Preserve functionality of the geometry.Difference block with geopandas 0.6.
  When taking the difference of a geometry with a missing geometry (A - None),
  geopandas < 0.6 returned A as result, while >= 0.6 returns None as result.

- Added default values for RasterFileSource's time parameters.

- Implemented the 'columns' attribute for GeometryFileSource.

- Fixed the projection attribute of elementwise raster blocks in case one of
  the arguments is a number and not a Block instance.

- Implemented the geo_transform attribute of elementwise raster blocks.

- Added an ipyleaflet plugin for visualizing RasterBlocks in jupyter notebook.

- Changed the default geomodeling.root setting to the current working directory


2.0.3 (2019-10-08)
------------------

- Added documentation.

- Fixed MemorySource incase of a request outside of the data boundary.

- Fixed multiple bugs in Reclassify and added some tests. The 'from' dtype can
  now be boolean or integer, and the 'to' dtype integer or float. The returned
  dtype is now decided by numpy (int64 or float64).


2.0.2 (2019-09-04)
------------------

- Clean up the .check() method for RasterBlocks.

- Added a Travisfile testing with against versions since 2017 on Linux and OSX.

- Took some python 3.5 compatibility measures.

- Added fix in ParseText block for pandas 0.23.

- Changed underscores in config to dashes for dask 0.18 compatibility.

- Constrained dask to >= 0.18, numpy to >= 1.12, pandas to >= 0.19,
  geopandas to >= 0.4, scipy to >= 0.19.

- Removed the explicit (py)gdal dependency.


2.0.1 (2019-08-30)
------------------

- Renamed the package to dask-geomodeling.

- Integrated the settings with dask.config.

- Added BSD 3-Clause license.


2.0.0 (2019-08-27)
------------------

- Remove raster-store dependency.

- Removed RasterStoreSource, ThreediResultSource, Result, Interpolate,
  DeprecatedInterpolate, GeoInterface, and GroupTemporal geoblocks.

- Removed all django blocks GeoDjangoSource, AddDjangoFields, GeoDjangoSink.

- Simplified tokenization of Block objects.

- Implemented construct_multiple to construct multiple blocks at once.

- Implemented MemorySource and GeoTIFFSource as new raster sources.

- Add `Cumulative` geoblock for performing temporal cumulatives.


1.2.13 (2019-08-20)
-------------------

- Add `TemporalAggregate` geoblock for performing temporal aggregates on
  raster data.

- Fix raster math geoblocks to not have byte-sized integers 'wrap around'
  when they are added. All integer-types are now at least int32 and all float
  types at least float32.


1.2.12 (2019-07-30)
-------------------

- Made GeoDjangoSource backwards compatible with existing graph definitions.

- Fix Interpolate wrapper.


1.2.11 (2019-07-19)
-------------------

- Added new parameter `filters` to GeoDjangoSource.


1.2.10 (2019-07-05)
-------------------

- Classify block return single series with dtype of `labels`
  if `labels` are floats or integers.


1.2.9 (2019-06-29)
------------------

- Fix bug introduced in tokenization fix.


1.2.8 (2019-06-29)
------------------

- Skip tokenization if a block was already tokenized.


1.2.7 (2019-06-28)
------------------

- Implemented AggregateRasterAboveThreshold.


1.2.6 (2019-06-27)
------------------

- Fix in `ParseTextColumn` for empty column `description`.

- Fix empty dataset case in ClassifyFromColumns.


1.2.5 (2019-06-26)
------------------

- Skip (costly) call to tokenize() when constructing without validation. If a
  graph was supplied that was generated by geoblocks, the token should be
  present in the name. If the name has incorrect format, a warning is emitted
  and tokenize() is called after all.

- Deal with empty datasets in ClassifyFromColumns.


1.2.4 (2019-06-21)
------------------

- Updated ParseTextColumn: allow spaces in values.


1.2.3 (2019-06-21)
------------------

- Rasterize geoblock has a limit of 10000 geometries.

- Implemented Choose geoblock for Series.

- Added the block key in the exception message when construction failed.

- Added caching to get_compute_graph to speedup graph generation.

- Improved the documentation.


1.2.2 (2019-06-13)
------------------

- Fix tokenization of a geoblock when constructing with validate=False.

- The raster requests generated in AggregateRaster have their bbox now snapped
  to (0, 0) for better reproducibility.


1.2.1 (2019-06-12)
------------------

- Fix bug in geoblocks.geometry.constructive.Buffer that was introduced in 1.2.


1.2 (2019-06-12)
----------------

- Extend geometry.field_operations.Classify for classification outside of
  the bins. For example, you can now supply 2 bins and 3 labels.

- Implemented geometry.field_operations.ClassifyFromColumns that takes its bins
  from columns in a GeometryBlock, so that classification can differ per
  feature.

- Extend geometry.base.SetSeriesBlock to setting constant values.

- Implemented geometry.field_operations.Interp.

- Implemented geometry.text.ParseTextColumn that parses a text column into
  multiple value columns.

- AddDjangoFields converts columns to Categorical dtype automatically if the
  data is of 'object' dtype (e.g. strings). This makes the memory footprint of
  large text fields much smaller.

- Make validation of a graph optional when constructing.

- Use dask.get in construct and compute as to not doubly construct/compute.

- Fix bug in geoblocks.geometry.constructive.Buffer that changed the compute
  graph inplace, prohibiting 2 computations of the same graph.


1.1 (2019-06-03)
----------------

- GeoDjangoSink returns a dataframe with the 'saved' column indicating whether
  the save succeeded. IntegrityErrors result in saved=False.

- Added projection argument to `GeometryTiler`. The GeometryTiler only accepts
  requests that have a projection equal to the tiling projection.

- Raise a RuntimeError if the amount of returned geometries by GeoDjangoSource
  exceeds the GEOMETRY_LIMIT setting.

- Added `auto_pixel_size`  argument to geometry.AggregateRaster. If this
  is False, the process raises a RuntimeError when the required raster exceeds
  the `max_size` argument.

- If `max_size` in the geometry.AggregateRaster is None, it defaults to
  the global RASTER_LIMIT setting.

- Remove the index_field_name argument in GeoDjangoSource, instead obtain it
  automatically from model._meta.pk.name. The index can be added as a normal
  column by including it in 'fields'.

- Change the default behaviour of 'fields' in GeoDjangoSource: if not given, no
  extra fields are included. Also start and end field names are not included.

- Added the 'columns' attribute to all geometry blocks except for
  the GeometryFileSource.

- Added tests for SetSeriesBlock and GetSeriesBlock.

- Added check that column exist in GetSeriesBlock, AddDjangoFields and
  GeoDjangoSink.

- Implemented Round geoblock for Series.

- Fixed AggregateRaster when aggregating in a different projection than the
  request projection.

- Allow GeometryTiler to tile in a different projection than the request
  geometry is using.


1.0 (2019-05-09)
----------------

- Improved GeoDjangoSink docstring + fixed bug.

- Bug fix in GeoInterface for handling `inf` values.

- Added `Area` Geoblock for area calculation in Geometry blocks.

- Added MergeGeometryBlocks for `merge` operation between GeoDataFrames.

- Added `GeometryBlock.__getitem__ `and `GeometryBlock.set`, getting single
  columns from and setting multiple columns to a GeometryBlock. Corresponding
  geoblocks are geometry.GetSeriesBlock and geometry.SetSeriesBlock.

- Added basic operations for `add`,`sub`,`mul`,`div`,`truediv`,`floordiv`,
  `mod`, `eq`,`neq`,`ge`,`gt`,`le`,`lt`, `and`, `or`, `xor` and `not`
  operation in SeriesBlocks.

- Documented the request and response protocol for GeometryBlock.

- Added a tokenizer for shapely geometries, so that GeometryBlock request
  hashes are deterministic.

- Added a tokenizer for datetime and timedelta objects.

- Added geopandas dependency.

- Removed GeoJSONSource and implemented GeometryFileSource. This new reader has
  no simplify and intersect functions.

- Implemented geometry.set_operations.Intersection.

- Implemented geometry.constructive.Simplify.

- Adjusted the MockGeometry test class.

- Reimplemented utils.rasterize_geoseries and fixed raster.Rasterize.

- Reimplemented geometry.AggregateRaster.

- Fixed time requests for 3Di Result geoblocks that are outside the range of
  the dataset

- Implemented geometry.GeoDjangoSource.

- Implemented geometry.GeoDjangoSink.

- Added support for overlapping geometries when aggregating.

- Increased performance of GeoSeries coordinate transformations.

- Fixed inconsistent naming of the extent-type geometry response.

- Consistently return an empty geodataframe in case there are no geometries.

- Implemented geometry.Difference.

- Implemented geometry.Classify.

- Implemented percentile statistic for geometry.AggregateRaster.

- Implemented geometry.GeometryTiler.

- Explicitly set the result column name for AggregateRaster (default: 'agg').

- Implemented count statistic for geometry.AggregateRaster.

- Implemented geometry.AddDjangoFields.

- Added temporal filtering for Django geometry sources.

- Allow boolean masks in raster.Clip.

- Implemented raster.IsData.

- Implemented geometry.Where and geometry.Mask.

- Extended raster.Rasterize to rasterize float, int and bool properties.

- Fixed bug in Rasterize that set 'min_size' wrong.


0.6 (2019-01-18)
----------------

- Coerce the geo_transform to a list of floats in the raster.Interpolate,
  preventing TypeErrors in case it consists of decimal.Decimal objects.


0.5 (2019-01-14)
----------------

- Adapted path URLs to absolute paths in RasterStoreSource, GeoJSONSource, and
  ThreediResultSource. They still accept paths relative to the one stored in
  settings.


0.4 (2019-01-11)
----------------

- The `'store_resolution'` result field of `GeoInterface` now returns the
  resolution as integer (in milliseconds) and not as datetime.timedelta.

- Added metadata fields to Optimizer geoblocks.

- Propagate the union of the geometries in a Group (and Optimizer) block.

- Propagate the intersection of the geometries in elementwise blocks.

- Implement the projection metadata field for all blocks.

- Fixed the Shift geoblock by storing the time shift in milliseconds instead of
  a datetime.timedelta, which is not JSON-serializable.


0.3 (2018-12-12)
----------------

- Added geoblocks.raster.Classify.

- Let the raster.Interpolate block accept the (deprecated) `layout` kwarg.


0.2 (2018-11-20)
----------------

- Renamed ThreediResultSource `path` property to `hdf5_path` and fixed it.


0.1 (2018-11-19)
----------------

- Initial project structure created.

- Copied graphs.py, tokenize.py, wrappers.py, results.py, interfaces.py,
  and relevant tests and factories from raster-store.

- Wrappers are renamed into 'geoblocks', which are al subclasses of `Block`. The
  wrappers were restructured into submodules core, raster, geometry, and interfaces.

- The new geoblocks.Block baseclass now provides the infrastructure for
  a) describing a relational block graph and b) generating compute graphs from a
  request for usage in parallelized computations.

- Each element in a relational block graph or compute graph is hashed using the
  `tokenize` module from `dask` which is able to generate unique and deterministic
  tokens (hashes).

- Blocks are saved to a new json format (version 2).

- Every block supports the attributes `period`, `timedelta`, `extent`,
  `dtype`, `fillvalue`, `geometry`, and `geo_transform`.

- The `check` method is implemented on every block and refreshes the
  primitives (`stores.Store` / `results.Grid`).

- `geoblocks.raster.sources.RasterStoreSource` should now be wrapped around a
  `raster_store.stores.Store` in order to include it as a datasource inside a graph.

- Reformatted the code using black code formatter.

- Implemented `GroupTemporal` as replacement for multi-store Lizard objects.

- Adapted `GeoInterface` to mimic now deprecated lizard_nxt.raster.Raster.

- Fixed issue with ciso8601 2.*

- Bumped raster-store dependency to 4.0.0.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/nens/dask-geomodeling",
    "name": "dask-geomodeling",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "dask",
    "author": "Casper van der Wel",
    "author_email": "casper.vanderwel@nelen-schuurmans.nl",
    "download_url": "https://files.pythonhosted.org/packages/cd/9e/a48f884857f77a6d152fcc05ad07b4bf6121030f0c2cfffbd5e46711c4cd/dask-geomodeling-2.4.4.tar.gz",
    "platform": null,
    "description": "dask-geomodeling\n==========================================\n\n.. image:: https://readthedocs.org/projects/dask-geomodeling/badge/?version=latest\n     :target: https://dask-geomodeling.readthedocs.io/en/latest/?badge=latest\n\n.. image:: https://github.com/nens/dask-geomodeling/actions/workflows/test.yml/badge.svg\n    :target: https://github.com/nens/dask-geomodeling/actions/workflows/test.yml\n\n.. image:: https://badge.fury.io/py/dask-geomodeling.svg\n    :target: https://badge.fury.io/py/dask-geomodeling\n\n.. image:: https://anaconda.org/conda-forge/dask-geomodeling/badges/version.svg\n    :target: https://anaconda.org/conda-forge/dask-geomodeling\n\nDask-geomodeling is a collection of classes that are to be stacked together to\ncreate configurations for on-the-fly operations on geographical maps. By\ngenerating `Dask <https://dask.pydata.org/>`_ compute graphs, these operation\nmay be parallelized and (intermediate) results may be cached.\n\nMultiple Block instances together make a view. Each Block has the ``get_data``\nmethod that fetches the data in one go, as well as a ``get_compute_graph``\nmethod that creates a graph to compute the data later.\n\n`Read the docs <https://dask-geomodeling.readthedocs.org/>`_ for further information.\n\n\nChangelog of dask-geomodeling\n===================================================\n\n2.4.4 (2024-01-17)\n------------------\n\n- Fix Place block.\n\n\n2.4.3 (2023-06-01)\n------------------\n\n- Fixed an edge case in TemporalAggregate / Cumulative for month start (\"MS\") frequency.\n\n\n2.4.2 (2023-05-31)\n------------------\n\n- Fixed TemporalAggregate and Cumulative for month start (\"MS\") frequency.\n\n\n2.4.1 (2023-04-18)\n------------------\n\n- AggregateRaster will do a point request to the raster if only 1 cell is required\n  (instead of a box request that encompasses the cell).\n\n\n2.4.0 (2023-04-13)\n------------------\n\n- Change Block.get_data; instead of always computing in the main thread, use\n  the scheduler that is setup via dask.config.\n\n\n2.3.13 (2023-04-04)\n-------------------\n\n- Expand AggregateRaster for usage on points (and other geometries that are\n  smaller than a cell).\n\n\n2.3.12 (2022-11-28)\n-------------------\n\n- Perform more geometry transformations via pyproj (see 2.3.11 notes).\n\n- The .geometry property of elementwise, reduction and combine RasterBlocks is\n  now computed through the extents of the arguments (and will always be a box). \n\n\n2.3.11 (2022-11-22)\n-------------------\n\n- Perform geometry transformations via pyproj instead of GDAL SWIG bindings to circumvent\n  a performance degradation in GDAL >=3 (PROJ >=6).\n\n- Drop support for Python 3.6 and GDAL 2.\n\n\n2.3.10 (2022-08-22)\n-------------------\n\n- Fixed compatibility with GDAL 3.4.\n\n- Fixed compatibility with shapely 2 (PyGEOS merge).\n\n\n2.3.9 (2022-03-07)\n------------------\n\n- TemporalAggregate now correctly incorporates time resolution in retrieval of timekeys.\n\n\n2.3.8 (2022-02-18)\n------------------\n\n- Fixed proper propagation of time resolution through AggregateRaster\n\n\n2.3.7 (2022-02-08)\n------------------\n\n- Fixed raster.Max not handling \"time\" and \"meta\" modes.\n\n\n2.3.6 (2022-02-04)\n------------------\n\n- Reverted changes to elemwise.\n\n\n2.3.5 (2022-02-02)\n------------------\n\n- Added raster.Max block to select the maximum value from overlapping sources.\n\n- Made Elemwise blocks more strict regarding source periods.\n\n- Drop python 3.5 support and move on other version requirements.\n\n- Fix deprecation warning with distutils.\n\n\n2.3.4 (2021-02-08)\n------------------\n\n- Added a default setting \"raster-limit-timesteps\".\n\n\n2.3.3 (2020-12-11)\n------------------\n\n- Fix field_operations.Classify if used with int-typed labels. A NaN value in\n  the result resulted in a Categorical output dtype. To fix this, Classify\n  now returns floats also when input labels are integers. (#82)\n\n\n2.3.2 (2020-11-19)\n------------------\n\n- Make Dilate arguments JSON serializable. (#81)\n\n\n2.3.1 (2020-11-10)\n------------------\n\n- Never return Categorical dtypes in the field_operations.Classify and\n  ClassifyFromColumns. This leads to pandas incompatibilities with later\n  operations (round, subtract, where, mask).\n\n- Never return Categorical dtypes from ParseTextColumn. (#79)\n\n- field_operations.Where and field_operations.Mask now also allow non-boolean\n  conditionals. This was already the case for Where on pandas == 0.19.*. (#78)\n\n\n2.3.0 (2020-10-09)\n------------------\n\n- Added Exp, Log and Log10 RasterBlocks.\n\n- Added \"std\" and \"var\" statistics to TemporalAggregate.\n\n\n2.2.12 (2020-09-29)\n-------------------\n\n- Fixed point requests for RasterizeWKT.\n\n- Allow empty coordinate list in Place.\n\n\n2.2.11 (2020-09-01)\n-------------------\n\n- Make transformation exceptions more comprehensible.\n\n- Check for matching time resolutions in raster.Clip.\n\n- Added 'product' to raster.reduction STATISTICS.\n\n2.2.10 (2020-07-29)\n-------------------\n\n- Fix point requests in raster.Smooth.\n\n- GDAL 3 compatibility fixes.\n\n\n2.2.9 (2020-06-23)\n------------------\n\n- Implemented `RasterTiler`.\n\n- Let raster.Mask accomodate int values larger than uint8.\n\n\n2.2.8 (2020-06-12)\n------------------\n\n- Accept categorical values in GeometryFileSink / to_file.\n\n- Fixed incompatibilities with geopandas >=0.7.\n\n- GeoJSON output is always converted to EPSG:4326 and doesn't have \"crs\" field.\n\n- Implemented raster.reduction.reduce_rasters.\n\n- Added the 'statistics' argument to raster.spatial.Place to deal with\n  overlapping features. \n\n- Allow point requests in raster.spatial.Place.\n\n- Clarifications about raster cell validity ranges in MemorySource and\n  RasterFileSource.\n\n\n2.2.7 (2020-04-30)\n------------------\n\n- Accept list and dict values in GeometryFileSink / to_file.\n\n- Fix bug in ParseTextColumn that added columns in duplicate when outputting\n  into the input column.\n\n\n2.2.6 (2020-04-28)\n------------------\n\n- Fixed bug in `FillNoData` block.\n\n- Fixed bug in `AggregateRasterAboveThreshold` (introduced in #37) (#44).\n\n\n2.2.4 (2020-03-25)\n------------------\n\n- Allow up to 1E-7 in the GeoTransform 'tilt' terms to account for possible\n  float32 imprecision.\n\n- Handle Nones in geometry.field_operations.Classify and ClassifyFromColumns.\n\n- Validate if labels are unique in geometry.field_operations.Classify and\n  ClassifyFromColumns.\n  \n  - Added raster.spatial.Place.\n\n\n2.2.3 (2020-02-28)\n------------------\n\n-  Fix AggregateRaster: it now returns NaN for no data pixels (#37)\n\n\n2.2.2 (2020-02-13)\n------------------\n\n- Added GeometryWKTSource.\n\n- Updated all docstrings.\n\n- Renamed the 'location' parameter of raster.misc.Step to 'value'.\n\n\n2.2.1 (2020-02-04)\n------------------\n\n- Suppressed \"invalid value encountered in greater than\" warning in\n  ClassifyFromColumns.\n\n- Compatibility fixes for pandas 1.0.0.\n\n- Implemented raster.RasterizeWKT\n\n\n2.2.0 (2019-12-20)\n------------------\n\n- utils.get_crs now leaves EPSG codes instead of converting them to their Proj4\n  representation.\n\n- Implemented GeometryFileSink that writes ESRI Shapefile, GeoJSON, GML, and\n  geopackage.\n\n- Added a .to_file() method to all GeometryBlocks.\n\n- Added dry_run parameter (for validation) to .to_file().\n\n- Start using google docstring convention.\n\n- Several minor doc fixes.\n\n- Fix setting of the .crs property in the GeometryFileSource.\n\n- Fixed serialization of raster.Classify.\n\n\n2.1.1 (2019-12-06)\n------------------\n\n- Fix empty response of TemporalAggregate and Cumulative.\n\n- Fix elementwise raster blocks in case of empty datasets.\n\n\n2.1.0 (2019-11-15)\n------------------\n\n- Added RasterFileSource.close_dataset to close the GDAL file handle.\n\n- Run unittests on windows.\n\n- Adapt safe_abspath and safe_file_url functions: they now automatically\n  interpret the geomodeling.root config instead of the 'start' kwarg.\n\n- Added a geomodeling.strict-file-paths that defaults to False. This changes\n  the default behaviour of all blocks that handle file paths: by default, the\n  path is not required to be in geomodeling.root.\n\n- Added installation instructions for windows.\n\n- Improved the ipyleaflet plugin so that it can deal with multiple notebook\n  servers on the same machine. The parameter 'hostname' was replaced by 'url'.\n\n\n2.0.4 (2019-11-01)\n------------------\n\n- Fixed propagation of the 'extent' and 'geometry' attributes through the\n  raster.Clip. Both now return the intersection of the store and mask rasters.\n\n- The MemorySource and elementwise blocks now return None for 'extent' and\n  'geometry' if they are empty.\n\n- Preserve functionality of the geometry.Difference block with geopandas 0.6.\n  When taking the difference of a geometry with a missing geometry (A - None),\n  geopandas < 0.6 returned A as result, while >= 0.6 returns None as result.\n\n- Added default values for RasterFileSource's time parameters.\n\n- Implemented the 'columns' attribute for GeometryFileSource.\n\n- Fixed the projection attribute of elementwise raster blocks in case one of\n  the arguments is a number and not a Block instance.\n\n- Implemented the geo_transform attribute of elementwise raster blocks.\n\n- Added an ipyleaflet plugin for visualizing RasterBlocks in jupyter notebook.\n\n- Changed the default geomodeling.root setting to the current working directory\n\n\n2.0.3 (2019-10-08)\n------------------\n\n- Added documentation.\n\n- Fixed MemorySource incase of a request outside of the data boundary.\n\n- Fixed multiple bugs in Reclassify and added some tests. The 'from' dtype can\n  now be boolean or integer, and the 'to' dtype integer or float. The returned\n  dtype is now decided by numpy (int64 or float64).\n\n\n2.0.2 (2019-09-04)\n------------------\n\n- Clean up the .check() method for RasterBlocks.\n\n- Added a Travisfile testing with against versions since 2017 on Linux and OSX.\n\n- Took some python 3.5 compatibility measures.\n\n- Added fix in ParseText block for pandas 0.23.\n\n- Changed underscores in config to dashes for dask 0.18 compatibility.\n\n- Constrained dask to >= 0.18, numpy to >= 1.12, pandas to >= 0.19,\n  geopandas to >= 0.4, scipy to >= 0.19.\n\n- Removed the explicit (py)gdal dependency.\n\n\n2.0.1 (2019-08-30)\n------------------\n\n- Renamed the package to dask-geomodeling.\n\n- Integrated the settings with dask.config.\n\n- Added BSD 3-Clause license.\n\n\n2.0.0 (2019-08-27)\n------------------\n\n- Remove raster-store dependency.\n\n- Removed RasterStoreSource, ThreediResultSource, Result, Interpolate,\n  DeprecatedInterpolate, GeoInterface, and GroupTemporal geoblocks.\n\n- Removed all django blocks GeoDjangoSource, AddDjangoFields, GeoDjangoSink.\n\n- Simplified tokenization of Block objects.\n\n- Implemented construct_multiple to construct multiple blocks at once.\n\n- Implemented MemorySource and GeoTIFFSource as new raster sources.\n\n- Add `Cumulative` geoblock for performing temporal cumulatives.\n\n\n1.2.13 (2019-08-20)\n-------------------\n\n- Add `TemporalAggregate` geoblock for performing temporal aggregates on\n  raster data.\n\n- Fix raster math geoblocks to not have byte-sized integers 'wrap around'\n  when they are added. All integer-types are now at least int32 and all float\n  types at least float32.\n\n\n1.2.12 (2019-07-30)\n-------------------\n\n- Made GeoDjangoSource backwards compatible with existing graph definitions.\n\n- Fix Interpolate wrapper.\n\n\n1.2.11 (2019-07-19)\n-------------------\n\n- Added new parameter `filters` to GeoDjangoSource.\n\n\n1.2.10 (2019-07-05)\n-------------------\n\n- Classify block return single series with dtype of `labels`\n  if `labels` are floats or integers.\n\n\n1.2.9 (2019-06-29)\n------------------\n\n- Fix bug introduced in tokenization fix.\n\n\n1.2.8 (2019-06-29)\n------------------\n\n- Skip tokenization if a block was already tokenized.\n\n\n1.2.7 (2019-06-28)\n------------------\n\n- Implemented AggregateRasterAboveThreshold.\n\n\n1.2.6 (2019-06-27)\n------------------\n\n- Fix in `ParseTextColumn` for empty column `description`.\n\n- Fix empty dataset case in ClassifyFromColumns.\n\n\n1.2.5 (2019-06-26)\n------------------\n\n- Skip (costly) call to tokenize() when constructing without validation. If a\n  graph was supplied that was generated by geoblocks, the token should be\n  present in the name. If the name has incorrect format, a warning is emitted\n  and tokenize() is called after all.\n\n- Deal with empty datasets in ClassifyFromColumns.\n\n\n1.2.4 (2019-06-21)\n------------------\n\n- Updated ParseTextColumn: allow spaces in values.\n\n\n1.2.3 (2019-06-21)\n------------------\n\n- Rasterize geoblock has a limit of 10000 geometries.\n\n- Implemented Choose geoblock for Series.\n\n- Added the block key in the exception message when construction failed.\n\n- Added caching to get_compute_graph to speedup graph generation.\n\n- Improved the documentation.\n\n\n1.2.2 (2019-06-13)\n------------------\n\n- Fix tokenization of a geoblock when constructing with validate=False.\n\n- The raster requests generated in AggregateRaster have their bbox now snapped\n  to (0, 0) for better reproducibility.\n\n\n1.2.1 (2019-06-12)\n------------------\n\n- Fix bug in geoblocks.geometry.constructive.Buffer that was introduced in 1.2.\n\n\n1.2 (2019-06-12)\n----------------\n\n- Extend geometry.field_operations.Classify for classification outside of\n  the bins. For example, you can now supply 2 bins and 3 labels.\n\n- Implemented geometry.field_operations.ClassifyFromColumns that takes its bins\n  from columns in a GeometryBlock, so that classification can differ per\n  feature.\n\n- Extend geometry.base.SetSeriesBlock to setting constant values.\n\n- Implemented geometry.field_operations.Interp.\n\n- Implemented geometry.text.ParseTextColumn that parses a text column into\n  multiple value columns.\n\n- AddDjangoFields converts columns to Categorical dtype automatically if the\n  data is of 'object' dtype (e.g. strings). This makes the memory footprint of\n  large text fields much smaller.\n\n- Make validation of a graph optional when constructing.\n\n- Use dask.get in construct and compute as to not doubly construct/compute.\n\n- Fix bug in geoblocks.geometry.constructive.Buffer that changed the compute\n  graph inplace, prohibiting 2 computations of the same graph.\n\n\n1.1 (2019-06-03)\n----------------\n\n- GeoDjangoSink returns a dataframe with the 'saved' column indicating whether\n  the save succeeded. IntegrityErrors result in saved=False.\n\n- Added projection argument to `GeometryTiler`. The GeometryTiler only accepts\n  requests that have a projection equal to the tiling projection.\n\n- Raise a RuntimeError if the amount of returned geometries by GeoDjangoSource\n  exceeds the GEOMETRY_LIMIT setting.\n\n- Added `auto_pixel_size`  argument to geometry.AggregateRaster. If this\n  is False, the process raises a RuntimeError when the required raster exceeds\n  the `max_size` argument.\n\n- If `max_size` in the geometry.AggregateRaster is None, it defaults to\n  the global RASTER_LIMIT setting.\n\n- Remove the index_field_name argument in GeoDjangoSource, instead obtain it\n  automatically from model._meta.pk.name. The index can be added as a normal\n  column by including it in 'fields'.\n\n- Change the default behaviour of 'fields' in GeoDjangoSource: if not given, no\n  extra fields are included. Also start and end field names are not included.\n\n- Added the 'columns' attribute to all geometry blocks except for\n  the GeometryFileSource.\n\n- Added tests for SetSeriesBlock and GetSeriesBlock.\n\n- Added check that column exist in GetSeriesBlock, AddDjangoFields and\n  GeoDjangoSink.\n\n- Implemented Round geoblock for Series.\n\n- Fixed AggregateRaster when aggregating in a different projection than the\n  request projection.\n\n- Allow GeometryTiler to tile in a different projection than the request\n  geometry is using.\n\n\n1.0 (2019-05-09)\n----------------\n\n- Improved GeoDjangoSink docstring + fixed bug.\n\n- Bug fix in GeoInterface for handling `inf` values.\n\n- Added `Area` Geoblock for area calculation in Geometry blocks.\n\n- Added MergeGeometryBlocks for `merge` operation between GeoDataFrames.\n\n- Added `GeometryBlock.__getitem__ `and `GeometryBlock.set`, getting single\n  columns from and setting multiple columns to a GeometryBlock. Corresponding\n  geoblocks are geometry.GetSeriesBlock and geometry.SetSeriesBlock.\n\n- Added basic operations for `add`,`sub`,`mul`,`div`,`truediv`,`floordiv`,\n  `mod`, `eq`,`neq`,`ge`,`gt`,`le`,`lt`, `and`, `or`, `xor` and `not`\n  operation in SeriesBlocks.\n\n- Documented the request and response protocol for GeometryBlock.\n\n- Added a tokenizer for shapely geometries, so that GeometryBlock request\n  hashes are deterministic.\n\n- Added a tokenizer for datetime and timedelta objects.\n\n- Added geopandas dependency.\n\n- Removed GeoJSONSource and implemented GeometryFileSource. This new reader has\n  no simplify and intersect functions.\n\n- Implemented geometry.set_operations.Intersection.\n\n- Implemented geometry.constructive.Simplify.\n\n- Adjusted the MockGeometry test class.\n\n- Reimplemented utils.rasterize_geoseries and fixed raster.Rasterize.\n\n- Reimplemented geometry.AggregateRaster.\n\n- Fixed time requests for 3Di Result geoblocks that are outside the range of\n  the dataset\n\n- Implemented geometry.GeoDjangoSource.\n\n- Implemented geometry.GeoDjangoSink.\n\n- Added support for overlapping geometries when aggregating.\n\n- Increased performance of GeoSeries coordinate transformations.\n\n- Fixed inconsistent naming of the extent-type geometry response.\n\n- Consistently return an empty geodataframe in case there are no geometries.\n\n- Implemented geometry.Difference.\n\n- Implemented geometry.Classify.\n\n- Implemented percentile statistic for geometry.AggregateRaster.\n\n- Implemented geometry.GeometryTiler.\n\n- Explicitly set the result column name for AggregateRaster (default: 'agg').\n\n- Implemented count statistic for geometry.AggregateRaster.\n\n- Implemented geometry.AddDjangoFields.\n\n- Added temporal filtering for Django geometry sources.\n\n- Allow boolean masks in raster.Clip.\n\n- Implemented raster.IsData.\n\n- Implemented geometry.Where and geometry.Mask.\n\n- Extended raster.Rasterize to rasterize float, int and bool properties.\n\n- Fixed bug in Rasterize that set 'min_size' wrong.\n\n\n0.6 (2019-01-18)\n----------------\n\n- Coerce the geo_transform to a list of floats in the raster.Interpolate,\n  preventing TypeErrors in case it consists of decimal.Decimal objects.\n\n\n0.5 (2019-01-14)\n----------------\n\n- Adapted path URLs to absolute paths in RasterStoreSource, GeoJSONSource, and\n  ThreediResultSource. They still accept paths relative to the one stored in\n  settings.\n\n\n0.4 (2019-01-11)\n----------------\n\n- The `'store_resolution'` result field of `GeoInterface` now returns the\n  resolution as integer (in milliseconds) and not as datetime.timedelta.\n\n- Added metadata fields to Optimizer geoblocks.\n\n- Propagate the union of the geometries in a Group (and Optimizer) block.\n\n- Propagate the intersection of the geometries in elementwise blocks.\n\n- Implement the projection metadata field for all blocks.\n\n- Fixed the Shift geoblock by storing the time shift in milliseconds instead of\n  a datetime.timedelta, which is not JSON-serializable.\n\n\n0.3 (2018-12-12)\n----------------\n\n- Added geoblocks.raster.Classify.\n\n- Let the raster.Interpolate block accept the (deprecated) `layout` kwarg.\n\n\n0.2 (2018-11-20)\n----------------\n\n- Renamed ThreediResultSource `path` property to `hdf5_path` and fixed it.\n\n\n0.1 (2018-11-19)\n----------------\n\n- Initial project structure created.\n\n- Copied graphs.py, tokenize.py, wrappers.py, results.py, interfaces.py,\n  and relevant tests and factories from raster-store.\n\n- Wrappers are renamed into 'geoblocks', which are al subclasses of `Block`. The\n  wrappers were restructured into submodules core, raster, geometry, and interfaces.\n\n- The new geoblocks.Block baseclass now provides the infrastructure for\n  a) describing a relational block graph and b) generating compute graphs from a\n  request for usage in parallelized computations.\n\n- Each element in a relational block graph or compute graph is hashed using the\n  `tokenize` module from `dask` which is able to generate unique and deterministic\n  tokens (hashes).\n\n- Blocks are saved to a new json format (version 2).\n\n- Every block supports the attributes `period`, `timedelta`, `extent`,\n  `dtype`, `fillvalue`, `geometry`, and `geo_transform`.\n\n- The `check` method is implemented on every block and refreshes the\n  primitives (`stores.Store` / `results.Grid`).\n\n- `geoblocks.raster.sources.RasterStoreSource` should now be wrapped around a\n  `raster_store.stores.Store` in order to include it as a datasource inside a graph.\n\n- Reformatted the code using black code formatter.\n\n- Implemented `GroupTemporal` as replacement for multi-store Lizard objects.\n\n- Adapted `GeoInterface` to mimic now deprecated lizard_nxt.raster.Raster.\n\n- Fixed issue with ciso8601 2.*\n\n- Bumped raster-store dependency to 4.0.0.\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "On-the-fly operations on geographical maps.",
    "version": "2.4.4",
    "project_urls": {
        "Homepage": "https://github.com/nens/dask-geomodeling"
    },
    "split_keywords": [
        "dask"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd9ea48f884857f77a6d152fcc05ad07b4bf6121030f0c2cfffbd5e46711c4cd",
                "md5": "417362e722ec0bd9039f9c1730041b36",
                "sha256": "d84cdf8f27a74d2866dbb976afebeca637763650d857650b5c25ed45286a719c"
            },
            "downloads": -1,
            "filename": "dask-geomodeling-2.4.4.tar.gz",
            "has_sig": false,
            "md5_digest": "417362e722ec0bd9039f9c1730041b36",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 91538,
            "upload_time": "2024-01-17T17:03:25",
            "upload_time_iso_8601": "2024-01-17T17:03:25.308140Z",
            "url": "https://files.pythonhosted.org/packages/cd/9e/a48f884857f77a6d152fcc05ad07b4bf6121030f0c2cfffbd5e46711c4cd/dask-geomodeling-2.4.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-17 17:03:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nens",
    "github_project": "dask-geomodeling",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dask-geomodeling"
}
        
Elapsed time: 0.17705s