├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── docs ├── Makefile ├── conf.py ├── img │ ├── Pysgems-02.png │ └── Pysgems-03.png ├── index.rst ├── make.bat ├── requirements.txt └── source │ ├── modules.rst │ ├── pysgems.algo.rst │ ├── pysgems.base.rst │ ├── pysgems.dis.rst │ ├── pysgems.examples.rst │ ├── pysgems.io.rst │ ├── pysgems.plot.rst │ ├── pysgems.rst │ ├── pysgems.sgems.rst │ └── pysgems.utils.rst ├── pysgems ├── __init__.py ├── algo │ ├── __init__.py │ └── sgalgo.py ├── algorithms │ ├── Variogram_model.xml │ ├── full_indicator_kriging.xml │ ├── full_indicator_kriging_postKriging.xml │ ├── kriging.xml │ └── sgsim.xml ├── base │ ├── __init__.py │ └── packbase.py ├── dis │ ├── __init__.py │ └── sgdis.py ├── examples │ ├── __init__.py │ ├── datasets │ │ ├── demo_indicator_kriging │ │ │ ├── VMM_PFOA_PFOS_EFSA4_Drinkwater20_2d.csv │ │ │ ├── sgems_dataset_full_indicator_kriging.eas │ │ │ └── shapefile │ │ │ │ ├── flanders.dbf │ │ │ │ ├── flanders.lyr │ │ │ │ ├── flanders.prj │ │ │ │ ├── flanders.shp │ │ │ │ ├── flanders.shx │ │ │ │ └── flanders.sld │ │ ├── demo_kriging │ │ │ └── sgems_dataset.eas │ │ ├── demo_sgsim │ │ │ └── sgsim_hard_data.eas │ │ └── demo_sgsim3D │ │ │ └── sgsim_hard_data3D.eas │ ├── demo_indicator_kriging.py │ ├── demo_indicator_kriging_mapping.py │ ├── demo_kriging.py │ ├── demo_sgsim.py │ └── results │ │ ├── demo_indicator_kriging │ │ └── plots │ │ │ ├── results_ConditionalMean.png │ │ │ ├── results_ConditionalVarianc.png │ │ │ ├── results_threshold_0.png │ │ │ ├── results_threshold_1.png │ │ │ ├── results_threshold_10.png │ │ │ ├── results_threshold_2.png │ │ │ ├── results_threshold_3.png │ │ │ ├── results_threshold_4.png │ │ │ ├── results_threshold_5.png │ │ │ ├── results_threshold_6.png │ │ │ ├── results_threshold_7.png │ │ │ ├── results_threshold_8.png │ │ │ └── results_threshold_9.png │ │ └── demo_kriging │ │ ├── grid.png │ │ ├── results.png │ │ └── results_var.png ├── io │ ├── __init__.py │ └── sgio.py ├── plot │ ├── __init__.py │ └── sgplots.py ├── script_templates │ ├── script_template.py │ └── script_template_FIK.py ├── sgems │ ├── __init__.py │ └── sg.py └── utils │ ├── __init__.py │ └── sgutils.py ├── requirements.txt └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/img/Pysgems-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/img/Pysgems-02.png -------------------------------------------------------------------------------- /docs/img/Pysgems-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/img/Pysgems-03.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/pysgems.algo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.algo.rst -------------------------------------------------------------------------------- /docs/source/pysgems.base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.base.rst -------------------------------------------------------------------------------- /docs/source/pysgems.dis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.dis.rst -------------------------------------------------------------------------------- /docs/source/pysgems.examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.examples.rst -------------------------------------------------------------------------------- /docs/source/pysgems.io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.io.rst -------------------------------------------------------------------------------- /docs/source/pysgems.plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.plot.rst -------------------------------------------------------------------------------- /docs/source/pysgems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.rst -------------------------------------------------------------------------------- /docs/source/pysgems.sgems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.sgems.rst -------------------------------------------------------------------------------- /docs/source/pysgems.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/docs/source/pysgems.utils.rst -------------------------------------------------------------------------------- /pysgems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/__init__.py -------------------------------------------------------------------------------- /pysgems/algo/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020. Robin Thibaut, Ghent University 2 | -------------------------------------------------------------------------------- /pysgems/algo/sgalgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/algo/sgalgo.py -------------------------------------------------------------------------------- /pysgems/algorithms/Variogram_model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/algorithms/Variogram_model.xml -------------------------------------------------------------------------------- /pysgems/algorithms/full_indicator_kriging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/algorithms/full_indicator_kriging.xml -------------------------------------------------------------------------------- /pysgems/algorithms/full_indicator_kriging_postKriging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/algorithms/full_indicator_kriging_postKriging.xml -------------------------------------------------------------------------------- /pysgems/algorithms/kriging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/algorithms/kriging.xml -------------------------------------------------------------------------------- /pysgems/algorithms/sgsim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/algorithms/sgsim.xml -------------------------------------------------------------------------------- /pysgems/base/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020. Robin Thibaut, Ghent University 2 | -------------------------------------------------------------------------------- /pysgems/base/packbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/base/packbase.py -------------------------------------------------------------------------------- /pysgems/dis/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020. Robin Thibaut, Ghent University 2 | -------------------------------------------------------------------------------- /pysgems/dis/sgdis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/dis/sgdis.py -------------------------------------------------------------------------------- /pysgems/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/VMM_PFOA_PFOS_EFSA4_Drinkwater20_2d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/VMM_PFOA_PFOS_EFSA4_Drinkwater20_2d.csv -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/sgems_dataset_full_indicator_kriging.eas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/sgems_dataset_full_indicator_kriging.eas -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.dbf -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.lyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.lyr -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.prj -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.shp -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.shx -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_indicator_kriging/shapefile/flanders.sld -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_kriging/sgems_dataset.eas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_kriging/sgems_dataset.eas -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_sgsim/sgsim_hard_data.eas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_sgsim/sgsim_hard_data.eas -------------------------------------------------------------------------------- /pysgems/examples/datasets/demo_sgsim3D/sgsim_hard_data3D.eas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/datasets/demo_sgsim3D/sgsim_hard_data3D.eas -------------------------------------------------------------------------------- /pysgems/examples/demo_indicator_kriging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/demo_indicator_kriging.py -------------------------------------------------------------------------------- /pysgems/examples/demo_indicator_kriging_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/demo_indicator_kriging_mapping.py -------------------------------------------------------------------------------- /pysgems/examples/demo_kriging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/demo_kriging.py -------------------------------------------------------------------------------- /pysgems/examples/demo_sgsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/demo_sgsim.py -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_ConditionalMean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_ConditionalMean.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_ConditionalVarianc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_ConditionalVarianc.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_0.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_1.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_10.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_2.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_3.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_4.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_5.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_6.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_7.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_8.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_indicator_kriging/plots/results_threshold_9.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_kriging/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_kriging/grid.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_kriging/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_kriging/results.png -------------------------------------------------------------------------------- /pysgems/examples/results/demo_kriging/results_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/examples/results/demo_kriging/results_var.png -------------------------------------------------------------------------------- /pysgems/io/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020. Robin Thibaut, Ghent University 2 | -------------------------------------------------------------------------------- /pysgems/io/sgio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/io/sgio.py -------------------------------------------------------------------------------- /pysgems/plot/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020. Robin Thibaut, Ghent University 2 | -------------------------------------------------------------------------------- /pysgems/plot/sgplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/plot/sgplots.py -------------------------------------------------------------------------------- /pysgems/script_templates/script_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/script_templates/script_template.py -------------------------------------------------------------------------------- /pysgems/script_templates/script_template_FIK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/script_templates/script_template_FIK.py -------------------------------------------------------------------------------- /pysgems/sgems/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020. Robin Thibaut, Ghent University 2 | -------------------------------------------------------------------------------- /pysgems/sgems/sg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/sgems/sg.py -------------------------------------------------------------------------------- /pysgems/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020. Robin Thibaut, Ghent University 2 | -------------------------------------------------------------------------------- /pysgems/utils/sgutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/pysgems/utils/sgutils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinthibaut/pysgems/HEAD/setup.py --------------------------------------------------------------------------------