Skip to content

Commit 0746992

Browse files
author
Szymon
authored
Merge pull request DataverseLabs#89 from szymon-datalions/dev
Dev
2 parents d2f796b + 5cf578c commit 0746992

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
exclude command.sh
2+
exclude readthedocs.yml

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ print(squared_error)
8888

8989
With **pyinterpolate** you are able to retrieve point support model from areal aggregates. Example from _Tick-borne Disease Detector_ study for European Space Agency - COVID-19 population at risk mapping. It was done with Area-to-Point Poisson Kriging technique from package. Countries along the world presents infections as areal sums to protect privacy of infected people. But this kind of representaion introduces bias to the decision-making process. To overcome this bias you may use Poisson Kriging. Areal aggregates of COVID-19 infection rate are transformed to new point support semivariogram created from population density blocks. As output we get population at risk map:
9090

91-
![Covid-19 infection risk in Poland for 14th April, 2020.](deconvoluted_risk_areas.jpg "Covid-19 infection risk in Poland for 14th April, 2020.")
91+
![Covid-19 infection risk in Poland for 14th April, 2020.](https://github.com/szymon-datalions/pyinterpolate/blob/main/deconvoluted_risk_areas.jpg?raw=true "Covid-19 infection risk in Poland for 14th April, 2020.")
9292

9393

9494

__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.2'
1+
__version__ = '0.2.2.post1'

changelog.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ PyInterpolate is designed as the Python library for geostatistics. It's role is
66
Changes by date
77
===============
88

9-
00.00.2029 00:00 p.m. CE(S)T:
10-
--------------------------
9+
2021-03-02
10+
----------
1111

12-
version 0.2
12+
**version 0.2.2.post1**
1313

14-
* BETA RELEASE
14+
* variogram point cloud methods, tutorials, docs and tests added,
15+
* updated tutorials and baseline datasets to show examples with spatial correlation,
16+
* updated `README.md`: contribution, example, sample image,
17+
* data is tested against duplicates (points with the same coordinates),
18+
* removed bug in `interpolate_raster()` method.

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
'Programming Language :: Python :: 3.7',
3434
],
3535
keywords=['Spatial interpolation', 'Kriging', 'Area Kriging', 'Block Kriging', 'Poisson Kriging', 'Geostatistics'],
36-
packages=find_packages(exclude=['data', 'test', 'tutorials', 'new_concepts']),
36+
packages=find_packages(exclude=['data', 'test', 'tutorials', 'new_concepts', 'paper', 'docs',
37+
'sample_data']),
3738

3839
install_requires=['descartes==1.1.0', 'geopandas==0.7.0', 'matplotlib==3.2.1', 'numpy==1.18.3', 'tqdm==4.47.0',
3940
'pyproj==2.6.0', 'scipy==1.4.1', 'shapely==1.7.0',

0 commit comments

Comments
 (0)