├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── gd_core ├── __init__.py ├── geodetector.py ├── interaction_fig │ └── interaction.bmp └── optimal_stratification.py ├── geographical_detector.py ├── geographical_detector_algorithm.py ├── geographical_detector_provider.py ├── help ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── i18n └── af.ts ├── icon.png ├── image ├── Q_GD GUI.png └── Snipaste_2022-04-01_12-18-20.png ├── metadata.txt ├── pb_tool.cfg ├── plugin_upload.py ├── pylintrc ├── scripts ├── compile-strings.sh ├── run-env-linux.sh └── update-strings.sh ├── test ├── __init__.py ├── qgis_interface.py ├── tenbytenraster.asc ├── tenbytenraster.asc.aux.xml ├── tenbytenraster.keywords ├── tenbytenraster.lic ├── tenbytenraster.prj ├── tenbytenraster.qml ├── test_init.py ├── test_qgis_environment.py ├── test_translations.py ├── test_write.py └── utilities.py └── ui └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/__init__.py -------------------------------------------------------------------------------- /gd_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/gd_core/__init__.py -------------------------------------------------------------------------------- /gd_core/geodetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/gd_core/geodetector.py -------------------------------------------------------------------------------- /gd_core/interaction_fig/interaction.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/gd_core/interaction_fig/interaction.bmp -------------------------------------------------------------------------------- /gd_core/optimal_stratification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/gd_core/optimal_stratification.py -------------------------------------------------------------------------------- /geographical_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/geographical_detector.py -------------------------------------------------------------------------------- /geographical_detector_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/geographical_detector_algorithm.py -------------------------------------------------------------------------------- /geographical_detector_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/geographical_detector_provider.py -------------------------------------------------------------------------------- /help/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/help/Makefile -------------------------------------------------------------------------------- /help/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/help/make.bat -------------------------------------------------------------------------------- /help/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/help/source/conf.py -------------------------------------------------------------------------------- /help/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/help/source/index.rst -------------------------------------------------------------------------------- /i18n/af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/i18n/af.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/icon.png -------------------------------------------------------------------------------- /image/Q_GD GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/image/Q_GD GUI.png -------------------------------------------------------------------------------- /image/Snipaste_2022-04-01_12-18-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/image/Snipaste_2022-04-01_12-18-20.png -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/metadata.txt -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/plugin_upload.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/pylintrc -------------------------------------------------------------------------------- /scripts/compile-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/scripts/compile-strings.sh -------------------------------------------------------------------------------- /scripts/run-env-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/scripts/run-env-linux.sh -------------------------------------------------------------------------------- /scripts/update-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/scripts/update-strings.sh -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/qgis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/qgis_interface.py -------------------------------------------------------------------------------- /test/tenbytenraster.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/tenbytenraster.asc -------------------------------------------------------------------------------- /test/tenbytenraster.asc.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/tenbytenraster.asc.aux.xml -------------------------------------------------------------------------------- /test/tenbytenraster.keywords: -------------------------------------------------------------------------------- 1 | title: Tenbytenraster 2 | -------------------------------------------------------------------------------- /test/tenbytenraster.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/tenbytenraster.lic -------------------------------------------------------------------------------- /test/tenbytenraster.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/tenbytenraster.prj -------------------------------------------------------------------------------- /test/tenbytenraster.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/tenbytenraster.qml -------------------------------------------------------------------------------- /test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/test_init.py -------------------------------------------------------------------------------- /test/test_qgis_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/test_qgis_environment.py -------------------------------------------------------------------------------- /test/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/test_translations.py -------------------------------------------------------------------------------- /test/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/test_write.py -------------------------------------------------------------------------------- /test/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/test/utilities.py -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsnrguo/QGIS-Geographical-detector/HEAD/ui/__init__.py --------------------------------------------------------------------------------