Metadata-Version: 2.1
Name: frgeostat
Version: 0.1.1.post0
Summary: A small package to help creating maps of france with geo statistical data overlays.
Home-page: https://bureaux-vote.v.olt.sh
Author: volt-france
Author-email: arno.veletanlic@volteuropa.org
Requires-Python: >=3.9,<3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: addict (>=2.4.0,<3.0.0)
Requires-Dist: beautifulsoup4 (>=4.12.2,<5.0.0)
Requires-Dist: fastparquet (>=2023.7.0,<2024.0.0)
Requires-Dist: fiona (>=1.9.4.post1,<2.0.0)
Requires-Dist: folium (>=0.14.0,<0.15.0)
Requires-Dist: geopandas (>=0.13.2,<0.14.0)
Requires-Dist: geovoronoi (>=0.4.0,<0.5.0)
Requires-Dist: ipykernel (>=6.25.0,<7.0.0)
Requires-Dist: ipywidgets (>=8.0.7,<9.0.0)
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
Requires-Dist: plotly (>=5.15.0,<6.0.0)
Requires-Dist: pyarrow (>=12.0.1,<13.0.0)
Requires-Dist: pynsee (>=0.1.4,<0.2.0)
Requires-Dist: quickbar (>=0.1.1.post0,<0.2.0)
Requires-Dist: scipy (>=1.11.1,<2.0.0)
Requires-Dist: shapely (>=2.0.1,<3.0.0)
Requires-Dist: unidecode (>=1.3.6,<2.0.0)
Description-Content-Type: text/markdown

# A small package to generate LeafletJS maps of France using `folium`

To install, create a virtualenv using whichever method you want, and either:

```shell
pip install frgeostat
```

Or, if you're using [poetry](https://python-poetry.org/), just do:

```shell
# uncomment the line below to trigger venv
# poetry shell
poetry add frgeostat
```

Here's an example of a [map generated by this small module](https://storage.googleapis.com/public.data.v.olt.sh/maps/html/departements.score.volt.map.html).

To get it, just run

```shell
frgeo build -k dept -o departements.score.volt.map.html
```

And wait a dozen seconds, you should see progress bars in the meantime..

# Multiple plots

You can plot several maps at once by repeating the arguments:

```shell
frgeo build -k dept -o dept.map.html -k commune -o co.map.html
```

This will build the `dept` map first and then the `commune` one.

