Skip to content

Commit

Permalink
Merge pull request #420 from mggg/release/0.3.1
Browse files Browse the repository at this point in the history
Release/0.3.1
  • Loading branch information
peterrrock2 committed Mar 1, 2024
2 parents 229ff29 + 0184159 commit 8176d43
Show file tree
Hide file tree
Showing 23 changed files with 2,290 additions and 1,503 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -64,6 +64,7 @@ target/
# pyenv python configuration file
.python-version
.venv
.docs_venv
junit.xml

# crapple
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -196,7 +196,7 @@ adjacencies or reading in shapefiles, then run
This approach sometimes fails due to compatibility issues between our
different Python GIS dependencies, like ``geopandas``, ``pyproj``,
``fiona``, and ``shapely``. If you run into this issue, try installing
the dependencies using the `geo_settings.txt <https://github.com/mggg/GerryChain/blob/main/docs/geo_settings.txt>`_
the dependencies using the `geo_settings.txt <https://github.com/mggg/GerryChain/raw/main/docs/geo_settings.txt>`_
file. To do this, run ``pip install -r geo_settings.txt`` from the
command line.

Expand Down
40 changes: 19 additions & 21 deletions docs/user/data.rst
Expand Up @@ -24,7 +24,7 @@ Writing Data to JSONL
.. raw:: html

<div class="center-container">
<a href="https://github.com/mggg/GerryChain/blob/main/docs/_static/PA_VTDs.json" class="download-badge" download>Download PA File</a>
<a href="https://github.com/mggg/GerryChain/raw/main/docs/_static/PA_VTDs.json" class="download-badge" download>Download PA File</a>
</div>
<br style="line-height: 5px;">

Expand Down Expand Up @@ -217,42 +217,40 @@ which will produce:
+-----+------+---------------+------------+----------+-------------+
| | step | district_name | population | area | n_cut_edges |
+=====+======+===============+============+==========+=============+
| 198 | 11 | 3 | 699433 | 0.831304 | 2162 |
| 198 | 11 | 3 | 704364 | 0.883639 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 199 | 11 | 10 | 700040 | 1.562749 | 2162 |
| 199 | 11 | 10 | 709547 | 2.228103 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 200 | 11 | 9 | 702500 | 1.579113 | 2162 |
| 200 | 11 | 9 | 712201 | 0.801655 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 201 | 11 | 5 | 695917 | 3.012263 | 2162 |
| 201 | 11 | 5 | 699705 | 1.639986 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 202 | 11 | 15 | 700895 | 1.616416 | 2162 |
| 202 | 11 | 15 | 706694 | 0.744557 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 203 | 11 | 6 | 705782 | 0.239069 | 2162 |
| 203 | 11 | 6 | 708502 | 0.351298 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 204 | 11 | 11 | 709813 | 0.357564 | 2162 |
| 204 | 11 | 11 | 705406 | 0.948691 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 205 | 11 | 8 | 705689 | 0.199275 | 2162 |
| 205 | 11 | 8 | 702576 | 0.109261 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 206 | 11 | 4 | 705669 | 0.418513 | 2162 |
| 206 | 11 | 4 | 705669 | 0.418513 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 207 | 11 | 18 | 706380 | 0.421818 | 2162 |
| 207 | 11 | 18 | 705847 | 0.569159 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 208 | 11 | 12 | 713452 | 0.856847 | 2162 |
| 208 | 11 | 12 | 695032 | 2.954248 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 209 | 11 | 17 | 706041 | 0.622091 | 2162 |
| 209 | 11 | 17 | 695142 | 0.237470 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 210 | 11 | 7 | 697675 | 0.329930 | 2162 |
| 210 | 11 | 7 | 711035 | 0.018885 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 211 | 11 | 16 | 716162 | 0.194045 | 2162 |
| 211 | 11 | 16 | 699557 | 0.283365 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 212 | 11 | 14 | 704993 | 0.207707 | 2162 |
| 212 | 11 | 14 | 705526 | 0.060366 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 213 | 11 | 13 | 705028 | 0.042608 | 2162 |
| 213 | 11 | 13 | 705028 | 0.042608 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 214 | 11 | 2 | 710286 | 0.021872 | 2162 |
| 214 | 11 | 2 | 705218 | 0.021515 | 2103 |
+-----+------+---------------+------------+----------+-------------+
| 215 | 11 | 1 | 699174 | 0.021139 | 2162 |
| 215 | 11 | 1 | 707880 | 0.221007 | 2103 |
+-----+------+---------------+------------+----------+-------------+



2 changes: 1 addition & 1 deletion docs/user/geometries.rst
Expand Up @@ -35,7 +35,7 @@ Loading and Running a Plan
.. raw:: html

<div class="center-container">
<a href="https://github.com/mggg/GerryChain/blob/main/docs/_static/MN.zip" class="download-badge" download>Download MN File</a>
<a href="https://github.com/mggg/GerryChain/raw/main/docs/_static/MN.zip" class="download-badge" download>Download MN File</a>
</div>
<br style="line-height: 5px;">

Expand Down
Binary file modified docs/user/images/MN_geopartition_ensamble.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8176d43

Please sign in to comment.