Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct HRA summary statistics table #1083

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b9dcc68
Reimplementing SUMMARY_STATISTICS.csv to use zonal_statistics.
phargogh Sep 10, 2022
a4c59db
Fixing a few bugs in the table creation step.
phargogh Sep 10, 2022
76ecd5a
Adding a %NONE field for no risk.
phargogh Sep 10, 2022
0d94a8b
Removing no-longer-used functions.
phargogh Sep 10, 2022
9aeb56e
Using in-development value_counts pygeoprocessing branch. RE:#1080
phargogh Sep 14, 2022
765ca7a
Adding docstring for new stats table function. RE:#1080
phargogh Sep 14, 2022
9bbccb4
Rewriting explicit dict creation with comprehensions. RE:#1080
phargogh Sep 14, 2022
f1b7d3d
Minor comment and linting. RE:#1080
phargogh Sep 14, 2022
b7730a1
Fixing a few issues that came up in tests.
phargogh Sep 14, 2022
bd91d26
Removing a test that's no longer needed. RE:#1080
phargogh Sep 14, 2022
a59ffaf
Reducing the indentation level in a nested loop.
phargogh Sep 15, 2022
6c68518
Adding a test for the summary statistics table.
phargogh Sep 15, 2022
acc8d5d
Noting changes in HISTORY. RE:#1080
phargogh Sep 15, 2022
9a25463
Merge branch 'main' of https://github.com/natcap/invest into bugfix/1…
phargogh Sep 15, 2022
fec27e0
I forgot to install pygeoprocessing via pip and not conda.
phargogh Sep 28, 2022
70e1d81
Using latest merged version of upstream pygeoprocessing. RE:#1080
phargogh Oct 21, 2022
296cd96
Merge branch 'main' of https://github.com/natcap/invest into bugfix/1…
phargogh Oct 21, 2022
59a948e
Capping qtawesome to avoid recent api change. RE:#1080
phargogh Oct 21, 2022
ba398f0
Fixing pygeoprocessing version hash issue; pointing back to personal …
phargogh Oct 21, 2022
1003937
Merge branch 'main' into bugfix/1080-hra-summary-statistcs-table-inco…
phargogh Nov 28, 2022
506055c
Merge branch 'main' into bugfix/1080-hra-summary-statistcs-table-inco…
phargogh Dec 2, 2022
068ef70
Merge branch 'main' into bugfix/1080-hra-summary-statistcs-table-inco…
phargogh Dec 6, 2022
198ff29
Merge branch 'main' into bugfix/1080-hra-summary-statistcs-table-inco…
phargogh Dec 13, 2022
e180cdb
Bumping pygeoprocessing revision. RE:#1080
phargogh Dec 14, 2022
ef261ff
Merge branch 'bugfix/1080-hra-summary-statistcs-table-incorrect' of g…
phargogh Dec 14, 2022
395a757
Removing history notes that had somehow been duplicated. RE:#1080
phargogh Dec 14, 2022
edaa069
Reworking summary table test to clarify intent.
phargogh Dec 14, 2022
43a37ec
Renaming variables, adding a comment for clarity.
phargogh Dec 14, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ Unreleased Changes
flag, leading to a perceived buffering of spatial criteria in certain
cases. In InVEST 3.9.0, these were rasterized with ``ALL_TOUCHED=FALSE``.
https://github.com/natcap/invest/issues/1120
* Fixed an issue with the results table, ``SUMMARY_STATISTICS.csv`` where
the percentages of high, medium and low risk classifications were not
correctly reported.
* Added a column to the ``SUMMARY_STATISTICS.csv`` output table to also
report the percentage of pixels within each subregion that have no risk
classification (a risk classification of 0).
* Urban Stormwater Retention
* Added validation to check that the input soil groups raster has an
integer data type
Expand All @@ -73,6 +79,7 @@ Unreleased Changes
relative to one another to be between 0 and 1.



3.12.0 (2022-08-31)
-------------------
* General
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ numpy>=1.11.0,!=1.16.0
Rtree>=0.8.2,!=0.9.1
shapely>=1.7.1,<1.8.2 # https://github.com/shapely/shapely/issues/1385
scipy>=1.9.0
pygeoprocessing>=2.3.2 # pip-only
pygeoprocessing>=2.3.5 # pip-only
taskgraph[niced_processes]>=0.11.0 # pip-only
psutil>=5.6.6
chardet>=3.0.4
Expand Down
Loading