├── LICENCE ├── Makefile ├── README.md ├── __init__.py ├── help ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── hotspot.png ├── hotspot_analysis.py ├── hotspot_analysis_dialog.py ├── hotspot_analysis_dialog_base.ui ├── i18n └── af.ts ├── layer_style ├── hotspots_class.qml ├── hotspots_class_poly.qml ├── moran_class.qml └── moran_class_poly.qml ├── metadata.txt ├── pb_tool.cfg ├── plugin_upload.py ├── resources.py ├── resources.qrc ├── scripts ├── compile-strings.sh ├── run-env-linux.sh └── update-strings.sh └── test_data ├── Hotspot_Analysis_UserGuide.pdf ├── demo_data.dbf ├── demo_data.prj ├── demo_data.shp ├── demo_data.shx ├── demo_data_poly.dbf ├── demo_data_poly.prj ├── demo_data_poly.shp └── demo_data_poly.shx /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/__init__.py -------------------------------------------------------------------------------- /help/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/help/Makefile -------------------------------------------------------------------------------- /help/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/help/make.bat -------------------------------------------------------------------------------- /help/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/help/source/conf.py -------------------------------------------------------------------------------- /help/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/help/source/index.rst -------------------------------------------------------------------------------- /hotspot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/hotspot.png -------------------------------------------------------------------------------- /hotspot_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/hotspot_analysis.py -------------------------------------------------------------------------------- /hotspot_analysis_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/hotspot_analysis_dialog.py -------------------------------------------------------------------------------- /hotspot_analysis_dialog_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/hotspot_analysis_dialog_base.ui -------------------------------------------------------------------------------- /i18n/af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/i18n/af.ts -------------------------------------------------------------------------------- /layer_style/hotspots_class.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/layer_style/hotspots_class.qml -------------------------------------------------------------------------------- /layer_style/hotspots_class_poly.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/layer_style/hotspots_class_poly.qml -------------------------------------------------------------------------------- /layer_style/moran_class.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/layer_style/moran_class.qml -------------------------------------------------------------------------------- /layer_style/moran_class_poly.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/layer_style/moran_class_poly.qml -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/metadata.txt -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/plugin_upload.py -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/resources.py -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/resources.qrc -------------------------------------------------------------------------------- /scripts/compile-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/scripts/compile-strings.sh -------------------------------------------------------------------------------- /scripts/run-env-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/scripts/run-env-linux.sh -------------------------------------------------------------------------------- /scripts/update-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/scripts/update-strings.sh -------------------------------------------------------------------------------- /test_data/Hotspot_Analysis_UserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/Hotspot_Analysis_UserGuide.pdf -------------------------------------------------------------------------------- /test_data/demo_data.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data.dbf -------------------------------------------------------------------------------- /test_data/demo_data.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data.prj -------------------------------------------------------------------------------- /test_data/demo_data.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data.shp -------------------------------------------------------------------------------- /test_data/demo_data.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data.shx -------------------------------------------------------------------------------- /test_data/demo_data_poly.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data_poly.dbf -------------------------------------------------------------------------------- /test_data/demo_data_poly.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data_poly.prj -------------------------------------------------------------------------------- /test_data/demo_data_poly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data_poly.shp -------------------------------------------------------------------------------- /test_data/demo_data_poly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danioxoli/HotSpotAnalysis_Plugin/HEAD/test_data/demo_data_poly.shx --------------------------------------------------------------------------------