├── .devcontainer ├── devcontainer.json └── setup.sh ├── .github └── workflows │ ├── bro.yml │ ├── knmi.yml │ ├── lizard_rotterdam.yml │ ├── lizard_vitens.yml │ ├── matroos.yml │ ├── on_pr_dev.yml │ ├── on_pr_master.yml │ ├── python-publish.yml │ ├── waterconnect.yml │ └── waterinfo.yml ├── .gitignore ├── .prospector.yaml ├── .readthedocs.yml ├── LICENSE ├── docs ├── Makefile ├── _static │ ├── Artesia_logo.jpg │ └── pastas_logo.png ├── conf.py ├── contribute.rst ├── examples │ ├── 00_hydropandas_objects.ipynb │ ├── 01_groundwater_observations.ipynb │ ├── 02_knmi_observations.ipynb │ ├── 03_hydropandas_and_pastas.ipynb │ ├── 04_merging_observations.ipynb │ ├── 05_bronhouderportaal_bro.ipynb │ ├── 06_lizard.ipynb │ ├── 07_fews.ipynb │ ├── 08_waterinfo.ipynb │ ├── 09_water_connect.ipynb │ ├── 10_borehole.ipynb │ ├── 11_matroos.ipynb │ ├── data │ │ ├── B49F0555001_1.csv │ │ ├── Grondwaterstanden_Put │ │ │ ├── B33F0080001_0.csv │ │ │ ├── B33F0080001_1.csv │ │ │ ├── B33F0133001_0.csv │ │ │ └── B33F0133001_1.csv │ │ ├── P43H0001.csv │ │ ├── bronhouderportaal-bro │ │ │ ├── GROND5_B1-1.xml │ │ │ ├── GROND5_B1-2.xml │ │ │ └── GROND5_B1-3.xml │ │ └── dino.zip │ └── index.rst ├── getting_started.rst ├── index.rst ├── make.bat ├── source │ ├── hydropandas.extensions.rst │ ├── hydropandas.io.rst │ └── modules.rst └── user_guide.rst ├── hydropandas ├── __init__.py ├── data │ ├── fews_parameterid.py │ ├── knmi_meteostation.json │ ├── knmi_neerslagstation.json │ ├── matroos_params.json │ ├── update_knmi_stations.py │ └── update_matroos.py ├── extensions │ ├── __init__.py │ ├── accessor.py │ ├── geo.py │ ├── gwobs.py │ ├── plots.py │ └── stats.py ├── io │ ├── __init__.py │ ├── bro.py │ ├── bronhouderportaal_bro.py │ ├── dino.py │ ├── fews.py │ ├── knmi.py │ ├── lizard.py │ ├── matroos.py │ ├── menyanthes.py │ ├── modflow.py │ ├── pastas.py │ ├── solinst.py │ ├── water_connect.py │ ├── waterinfo.py │ ├── wiski.py │ └── wow.py ├── obs_collection.py ├── observation.py ├── rcparams.py ├── serialization.py ├── static │ ├── js_collapse.html │ └── style.css ├── util.py └── version.py ├── pyproject.toml ├── readme.md └── tests ├── api ├── test_101_bro_api.py ├── test_102_knmi_api.py ├── test_103_lizard_api_vitens.py ├── test_104_waterconnect_api.py ├── test_105_waterinfo_api.py ├── test_106_lizard_api_rotterdam.py └── test_107_matroos_api.py ├── data ├── 2019-Dino-test │ ├── Geotechnisch sondeeronderzoek(en) │ │ ├── S30F02258.gef │ │ └── S30F02548.gef │ ├── Grondwatersamenstellingen_Put │ │ ├── B52C0057.txt │ │ ├── B58A0042.txt │ │ └── B58A0061.txt │ ├── Grondwaterstanden_Put │ │ ├── B02H0092001_0.csv │ │ ├── B02H0092001_1.csv │ │ ├── B02H1007001_0.csv │ │ ├── B02H1007001_1.csv │ │ ├── B04D0032002_0.csv │ │ ├── B04D0032002_1.csv │ │ ├── B22D0155001_1.csv │ │ ├── B27D0260001_0.csv │ │ ├── B27D0260001_1.csv │ │ ├── B33F0080001_0.csv │ │ ├── B33F0080001_1.csv │ │ ├── B33F0080002_0.csv │ │ ├── B33F0080002_1.csv │ │ ├── B33F0133001_0.csv │ │ ├── B33F0133001_1.csv │ │ ├── B33F0133002_0.csv │ │ ├── B33F0133002_1.csv │ │ ├── B37A0112001_0.csv │ │ ├── B37A0112001_1.csv │ │ ├── B39A0235002_0.csv │ │ ├── B39A0235002_1.csv │ │ ├── B42B0003001_0.csv │ │ ├── B42B0003001_1.csv │ │ ├── B42B0003002_0.csv │ │ ├── B42B0003002_1.csv │ │ ├── B42B0003003_0.csv │ │ ├── B42B0003003_1.csv │ │ ├── B42B0003004_0.csv │ │ ├── B42B0003004_1.csv │ │ ├── B58A0092004_0.csv │ │ ├── B58A0092004_1.csv │ │ ├── B58A0092005_0.csv │ │ ├── B58A0092005_1.csv │ │ ├── B58A0102001_0.csv │ │ ├── B58A0102001_1.csv │ │ ├── B58A0167001_0.csv │ │ ├── B58A0167001_1.csv │ │ ├── B58A0212001_0.csv │ │ └── B58A0212001_1.csv │ ├── Peilschaal │ │ ├── P58A0001.csv │ │ ├── P58A0002.csv │ │ ├── P58A0003.csv │ │ └── P58A0005.csv │ ├── dino.zip │ └── plots │ │ └── .gitignore ├── 2019-FEWS-test │ ├── WaalenBurg_201810-20190215_prod.zip │ ├── plots │ │ └── .gitignore │ └── test_wsvv_fews.xml ├── 2019-WISKI-test │ ├── 1016_PBF.csv │ ├── 1016_PBF.zip │ ├── 8137_PBF.csv │ └── Zwiepse Horstweg Barchem_1024_FT1_WNS9040_MomentaanO.csv ├── 2019-shapefiles │ ├── poly.cpg │ ├── poly.dbf │ ├── poly.prj │ ├── poly.shp │ └── poly.shx ├── 2023-KNMI-test │ ├── etmgeg_260.txt │ ├── neerslaggeg_DE-BILT_550.txt │ ├── neerslaggeg_ESBEEK_831.txt │ ├── neerslaggeg_VILSTEREN_342.txt │ ├── precipitation_st_anthonis.txt │ ├── uurgeg_260_1991-2000.txt │ └── uurgeg_260_2001-2010.txt ├── 2023-MEN-test │ └── test.men ├── 2023-waterinfo-test │ ├── 20200128_044.csv │ └── 20231023_017.csv ├── 2024-Dino-test │ ├── DINO_Grondwaterstanden │ │ ├── B02H0089001.csv │ │ ├── B02H0090001.csv │ │ ├── B02H0091001.csv │ │ ├── B02H0092001.csv │ │ ├── B31H0137001.csv │ │ ├── B31H0759001.csv │ │ ├── B44F0279001.csv │ │ └── B44H0400001.csv │ └── dino.zip ├── 2024-solinst-test │ ├── WsNoo_dp366_BUB_20231222_slug1m.xle │ └── example-10min-interval-via-laptop.zip └── excel │ └── .gitkeep ├── notebooks └── test_000_run_notebooks.py ├── test_001_to_from.py ├── test_002_obs_objects.py ├── test_003_calculations.py ├── test_004_gwobs.py ├── test_005_dino.py ├── test_006_knmi.py ├── test_007_wiski.py ├── test_008_visualisation.py ├── test_009_fews.py ├── test_011_bro.py ├── test_012_wow.py ├── test_013_lizard.py ├── test_014_solinst.py ├── test_015_waterconnect.py └── test_016_matroos.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Create model environments 4 | pip install -e .[full] -------------------------------------------------------------------------------- /.github/workflows/bro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/bro.yml -------------------------------------------------------------------------------- /.github/workflows/knmi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/knmi.yml -------------------------------------------------------------------------------- /.github/workflows/lizard_rotterdam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/lizard_rotterdam.yml -------------------------------------------------------------------------------- /.github/workflows/lizard_vitens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/lizard_vitens.yml -------------------------------------------------------------------------------- /.github/workflows/matroos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/matroos.yml -------------------------------------------------------------------------------- /.github/workflows/on_pr_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/on_pr_dev.yml -------------------------------------------------------------------------------- /.github/workflows/on_pr_master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/on_pr_master.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/waterconnect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/waterconnect.yml -------------------------------------------------------------------------------- /.github/workflows/waterinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.github/workflows/waterinfo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.gitignore -------------------------------------------------------------------------------- /.prospector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.prospector.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/Artesia_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/_static/Artesia_logo.jpg -------------------------------------------------------------------------------- /docs/_static/pastas_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/_static/pastas_logo.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/contribute.rst -------------------------------------------------------------------------------- /docs/examples/00_hydropandas_objects.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/00_hydropandas_objects.ipynb -------------------------------------------------------------------------------- /docs/examples/01_groundwater_observations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/01_groundwater_observations.ipynb -------------------------------------------------------------------------------- /docs/examples/02_knmi_observations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/02_knmi_observations.ipynb -------------------------------------------------------------------------------- /docs/examples/03_hydropandas_and_pastas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/03_hydropandas_and_pastas.ipynb -------------------------------------------------------------------------------- /docs/examples/04_merging_observations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/04_merging_observations.ipynb -------------------------------------------------------------------------------- /docs/examples/05_bronhouderportaal_bro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/05_bronhouderportaal_bro.ipynb -------------------------------------------------------------------------------- /docs/examples/06_lizard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/06_lizard.ipynb -------------------------------------------------------------------------------- /docs/examples/07_fews.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/07_fews.ipynb -------------------------------------------------------------------------------- /docs/examples/08_waterinfo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/08_waterinfo.ipynb -------------------------------------------------------------------------------- /docs/examples/09_water_connect.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/09_water_connect.ipynb -------------------------------------------------------------------------------- /docs/examples/10_borehole.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/10_borehole.ipynb -------------------------------------------------------------------------------- /docs/examples/11_matroos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/11_matroos.ipynb -------------------------------------------------------------------------------- /docs/examples/data/B49F0555001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/B49F0555001_1.csv -------------------------------------------------------------------------------- /docs/examples/data/Grondwaterstanden_Put/B33F0080001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/Grondwaterstanden_Put/B33F0080001_0.csv -------------------------------------------------------------------------------- /docs/examples/data/Grondwaterstanden_Put/B33F0080001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/Grondwaterstanden_Put/B33F0080001_1.csv -------------------------------------------------------------------------------- /docs/examples/data/Grondwaterstanden_Put/B33F0133001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/Grondwaterstanden_Put/B33F0133001_0.csv -------------------------------------------------------------------------------- /docs/examples/data/Grondwaterstanden_Put/B33F0133001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/Grondwaterstanden_Put/B33F0133001_1.csv -------------------------------------------------------------------------------- /docs/examples/data/P43H0001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/P43H0001.csv -------------------------------------------------------------------------------- /docs/examples/data/bronhouderportaal-bro/GROND5_B1-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/bronhouderportaal-bro/GROND5_B1-1.xml -------------------------------------------------------------------------------- /docs/examples/data/bronhouderportaal-bro/GROND5_B1-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/bronhouderportaal-bro/GROND5_B1-2.xml -------------------------------------------------------------------------------- /docs/examples/data/bronhouderportaal-bro/GROND5_B1-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/bronhouderportaal-bro/GROND5_B1-3.xml -------------------------------------------------------------------------------- /docs/examples/data/dino.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/data/dino.zip -------------------------------------------------------------------------------- /docs/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/examples/index.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/hydropandas.extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/source/hydropandas.extensions.rst -------------------------------------------------------------------------------- /docs/source/hydropandas.io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/source/hydropandas.io.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/docs/user_guide.rst -------------------------------------------------------------------------------- /hydropandas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/__init__.py -------------------------------------------------------------------------------- /hydropandas/data/fews_parameterid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/data/fews_parameterid.py -------------------------------------------------------------------------------- /hydropandas/data/knmi_meteostation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/data/knmi_meteostation.json -------------------------------------------------------------------------------- /hydropandas/data/knmi_neerslagstation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/data/knmi_neerslagstation.json -------------------------------------------------------------------------------- /hydropandas/data/matroos_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/data/matroos_params.json -------------------------------------------------------------------------------- /hydropandas/data/update_knmi_stations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/data/update_knmi_stations.py -------------------------------------------------------------------------------- /hydropandas/data/update_matroos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/data/update_matroos.py -------------------------------------------------------------------------------- /hydropandas/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hydropandas/extensions/accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/extensions/accessor.py -------------------------------------------------------------------------------- /hydropandas/extensions/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/extensions/geo.py -------------------------------------------------------------------------------- /hydropandas/extensions/gwobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/extensions/gwobs.py -------------------------------------------------------------------------------- /hydropandas/extensions/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/extensions/plots.py -------------------------------------------------------------------------------- /hydropandas/extensions/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/extensions/stats.py -------------------------------------------------------------------------------- /hydropandas/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hydropandas/io/bro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/bro.py -------------------------------------------------------------------------------- /hydropandas/io/bronhouderportaal_bro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/bronhouderportaal_bro.py -------------------------------------------------------------------------------- /hydropandas/io/dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/dino.py -------------------------------------------------------------------------------- /hydropandas/io/fews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/fews.py -------------------------------------------------------------------------------- /hydropandas/io/knmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/knmi.py -------------------------------------------------------------------------------- /hydropandas/io/lizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/lizard.py -------------------------------------------------------------------------------- /hydropandas/io/matroos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/matroos.py -------------------------------------------------------------------------------- /hydropandas/io/menyanthes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/menyanthes.py -------------------------------------------------------------------------------- /hydropandas/io/modflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/modflow.py -------------------------------------------------------------------------------- /hydropandas/io/pastas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/pastas.py -------------------------------------------------------------------------------- /hydropandas/io/solinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/solinst.py -------------------------------------------------------------------------------- /hydropandas/io/water_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/water_connect.py -------------------------------------------------------------------------------- /hydropandas/io/waterinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/waterinfo.py -------------------------------------------------------------------------------- /hydropandas/io/wiski.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/wiski.py -------------------------------------------------------------------------------- /hydropandas/io/wow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/io/wow.py -------------------------------------------------------------------------------- /hydropandas/obs_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/obs_collection.py -------------------------------------------------------------------------------- /hydropandas/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/observation.py -------------------------------------------------------------------------------- /hydropandas/rcparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/rcparams.py -------------------------------------------------------------------------------- /hydropandas/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/serialization.py -------------------------------------------------------------------------------- /hydropandas/static/js_collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/static/js_collapse.html -------------------------------------------------------------------------------- /hydropandas/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/static/style.css -------------------------------------------------------------------------------- /hydropandas/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/util.py -------------------------------------------------------------------------------- /hydropandas/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/hydropandas/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/readme.md -------------------------------------------------------------------------------- /tests/api/test_101_bro_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/api/test_101_bro_api.py -------------------------------------------------------------------------------- /tests/api/test_102_knmi_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/api/test_102_knmi_api.py -------------------------------------------------------------------------------- /tests/api/test_103_lizard_api_vitens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/api/test_103_lizard_api_vitens.py -------------------------------------------------------------------------------- /tests/api/test_104_waterconnect_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/api/test_104_waterconnect_api.py -------------------------------------------------------------------------------- /tests/api/test_105_waterinfo_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/api/test_105_waterinfo_api.py -------------------------------------------------------------------------------- /tests/api/test_106_lizard_api_rotterdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/api/test_106_lizard_api_rotterdam.py -------------------------------------------------------------------------------- /tests/api/test_107_matroos_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/api/test_107_matroos_api.py -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Geotechnisch sondeeronderzoek(en)/S30F02258.gef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Geotechnisch sondeeronderzoek(en)/S30F02258.gef -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Geotechnisch sondeeronderzoek(en)/S30F02548.gef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Geotechnisch sondeeronderzoek(en)/S30F02548.gef -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwatersamenstellingen_Put/B52C0057.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwatersamenstellingen_Put/B52C0057.txt -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwatersamenstellingen_Put/B58A0042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwatersamenstellingen_Put/B58A0042.txt -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwatersamenstellingen_Put/B58A0061.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwatersamenstellingen_Put/B58A0061.txt -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H0092001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H0092001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H0092001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H0092001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H1007001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H1007001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H1007001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B02H1007001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B04D0032002_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B04D0032002_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B04D0032002_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B04D0032002_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B22D0155001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B22D0155001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B27D0260001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B27D0260001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B27D0260001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B27D0260001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080002_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080002_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080002_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0080002_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133002_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133002_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133002_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B33F0133002_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B37A0112001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B37A0112001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B37A0112001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B37A0112001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B39A0235002_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B39A0235002_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B39A0235002_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B39A0235002_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003002_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003002_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003002_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003002_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003003_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003003_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003003_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003003_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003004_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003004_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003004_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B42B0003004_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092004_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092004_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092004_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092004_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092005_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092005_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092005_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0092005_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0102001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0102001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0102001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0102001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0167001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0167001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0167001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0167001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0212001_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0212001_0.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0212001_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Grondwaterstanden_Put/B58A0212001_1.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Peilschaal/P58A0001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Peilschaal/P58A0001.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Peilschaal/P58A0002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Peilschaal/P58A0002.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Peilschaal/P58A0003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Peilschaal/P58A0003.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/Peilschaal/P58A0005.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/Peilschaal/P58A0005.csv -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/dino.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/dino.zip -------------------------------------------------------------------------------- /tests/data/2019-Dino-test/plots/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-Dino-test/plots/.gitignore -------------------------------------------------------------------------------- /tests/data/2019-FEWS-test/WaalenBurg_201810-20190215_prod.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-FEWS-test/WaalenBurg_201810-20190215_prod.zip -------------------------------------------------------------------------------- /tests/data/2019-FEWS-test/plots/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-FEWS-test/plots/.gitignore -------------------------------------------------------------------------------- /tests/data/2019-FEWS-test/test_wsvv_fews.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-FEWS-test/test_wsvv_fews.xml -------------------------------------------------------------------------------- /tests/data/2019-WISKI-test/1016_PBF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-WISKI-test/1016_PBF.csv -------------------------------------------------------------------------------- /tests/data/2019-WISKI-test/1016_PBF.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-WISKI-test/1016_PBF.zip -------------------------------------------------------------------------------- /tests/data/2019-WISKI-test/8137_PBF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-WISKI-test/8137_PBF.csv -------------------------------------------------------------------------------- /tests/data/2019-WISKI-test/Zwiepse Horstweg Barchem_1024_FT1_WNS9040_MomentaanO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-WISKI-test/Zwiepse Horstweg Barchem_1024_FT1_WNS9040_MomentaanO.csv -------------------------------------------------------------------------------- /tests/data/2019-shapefiles/poly.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /tests/data/2019-shapefiles/poly.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-shapefiles/poly.dbf -------------------------------------------------------------------------------- /tests/data/2019-shapefiles/poly.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-shapefiles/poly.prj -------------------------------------------------------------------------------- /tests/data/2019-shapefiles/poly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-shapefiles/poly.shp -------------------------------------------------------------------------------- /tests/data/2019-shapefiles/poly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2019-shapefiles/poly.shx -------------------------------------------------------------------------------- /tests/data/2023-KNMI-test/etmgeg_260.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-KNMI-test/etmgeg_260.txt -------------------------------------------------------------------------------- /tests/data/2023-KNMI-test/neerslaggeg_DE-BILT_550.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-KNMI-test/neerslaggeg_DE-BILT_550.txt -------------------------------------------------------------------------------- /tests/data/2023-KNMI-test/neerslaggeg_ESBEEK_831.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-KNMI-test/neerslaggeg_ESBEEK_831.txt -------------------------------------------------------------------------------- /tests/data/2023-KNMI-test/neerslaggeg_VILSTEREN_342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-KNMI-test/neerslaggeg_VILSTEREN_342.txt -------------------------------------------------------------------------------- /tests/data/2023-KNMI-test/precipitation_st_anthonis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-KNMI-test/precipitation_st_anthonis.txt -------------------------------------------------------------------------------- /tests/data/2023-KNMI-test/uurgeg_260_1991-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-KNMI-test/uurgeg_260_1991-2000.txt -------------------------------------------------------------------------------- /tests/data/2023-KNMI-test/uurgeg_260_2001-2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-KNMI-test/uurgeg_260_2001-2010.txt -------------------------------------------------------------------------------- /tests/data/2023-MEN-test/test.men: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-MEN-test/test.men -------------------------------------------------------------------------------- /tests/data/2023-waterinfo-test/20200128_044.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-waterinfo-test/20200128_044.csv -------------------------------------------------------------------------------- /tests/data/2023-waterinfo-test/20231023_017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2023-waterinfo-test/20231023_017.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0089001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0089001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0090001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0090001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0091001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0091001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0092001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B02H0092001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B31H0137001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B31H0137001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B31H0759001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B31H0759001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B44F0279001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B44F0279001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/DINO_Grondwaterstanden/B44H0400001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/DINO_Grondwaterstanden/B44H0400001.csv -------------------------------------------------------------------------------- /tests/data/2024-Dino-test/dino.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-Dino-test/dino.zip -------------------------------------------------------------------------------- /tests/data/2024-solinst-test/WsNoo_dp366_BUB_20231222_slug1m.xle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-solinst-test/WsNoo_dp366_BUB_20231222_slug1m.xle -------------------------------------------------------------------------------- /tests/data/2024-solinst-test/example-10min-interval-via-laptop.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/data/2024-solinst-test/example-10min-interval-via-laptop.zip -------------------------------------------------------------------------------- /tests/data/excel/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/notebooks/test_000_run_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/notebooks/test_000_run_notebooks.py -------------------------------------------------------------------------------- /tests/test_001_to_from.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_001_to_from.py -------------------------------------------------------------------------------- /tests/test_002_obs_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_002_obs_objects.py -------------------------------------------------------------------------------- /tests/test_003_calculations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_003_calculations.py -------------------------------------------------------------------------------- /tests/test_004_gwobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_004_gwobs.py -------------------------------------------------------------------------------- /tests/test_005_dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_005_dino.py -------------------------------------------------------------------------------- /tests/test_006_knmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_006_knmi.py -------------------------------------------------------------------------------- /tests/test_007_wiski.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_007_wiski.py -------------------------------------------------------------------------------- /tests/test_008_visualisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_008_visualisation.py -------------------------------------------------------------------------------- /tests/test_009_fews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_009_fews.py -------------------------------------------------------------------------------- /tests/test_011_bro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_011_bro.py -------------------------------------------------------------------------------- /tests/test_012_wow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_012_wow.py -------------------------------------------------------------------------------- /tests/test_013_lizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_013_lizard.py -------------------------------------------------------------------------------- /tests/test_014_solinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_014_solinst.py -------------------------------------------------------------------------------- /tests/test_015_waterconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_015_waterconnect.py -------------------------------------------------------------------------------- /tests/test_016_matroos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtesiaWater/hydropandas/HEAD/tests/test_016_matroos.py --------------------------------------------------------------------------------