├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── bivariate_legend.py ├── bivariate_legend_dockwidget.py ├── bivariate_legend_dockwidget_base.ui ├── clean.sh ├── help ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── i18n └── af.ts ├── icon.png ├── metadata.txt ├── pb_tool.cfg ├── plugin_upload.py ├── plugins.xml ├── plugins.xml.example ├── pylintrc ├── qgis-bivariate-legend-v0.1.gif ├── resources.qrc ├── 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_bivariate_legend_dockwidget.py ├── test_init.py ├── test_qgis_environment.py ├── test_resources.py ├── test_translations.py └── utilities.py └── update-plugins.xml.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | help/build/ 4 | resources.py 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/__init__.py -------------------------------------------------------------------------------- /bivariate_legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/bivariate_legend.py -------------------------------------------------------------------------------- /bivariate_legend_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/bivariate_legend_dockwidget.py -------------------------------------------------------------------------------- /bivariate_legend_dockwidget_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/bivariate_legend_dockwidget_base.ui -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/clean.sh -------------------------------------------------------------------------------- /help/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/help/Makefile -------------------------------------------------------------------------------- /help/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/help/make.bat -------------------------------------------------------------------------------- /help/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/help/source/conf.py -------------------------------------------------------------------------------- /help/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/help/source/index.rst -------------------------------------------------------------------------------- /i18n/af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/i18n/af.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/icon.png -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/metadata.txt -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/plugin_upload.py -------------------------------------------------------------------------------- /plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/plugins.xml -------------------------------------------------------------------------------- /plugins.xml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/plugins.xml.example -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/pylintrc -------------------------------------------------------------------------------- /qgis-bivariate-legend-v0.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/qgis-bivariate-legend-v0.1.gif -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/resources.qrc -------------------------------------------------------------------------------- /scripts/compile-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/scripts/compile-strings.sh -------------------------------------------------------------------------------- /scripts/run-env-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/scripts/run-env-linux.sh -------------------------------------------------------------------------------- /scripts/update-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/scripts/update-strings.sh -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/qgis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/qgis_interface.py -------------------------------------------------------------------------------- /test/tenbytenraster.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/tenbytenraster.asc -------------------------------------------------------------------------------- /test/tenbytenraster.asc.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/tenbytenraster.asc.aux.xml -------------------------------------------------------------------------------- /test/tenbytenraster.keywords: -------------------------------------------------------------------------------- 1 | title: Tenbytenraster 2 | -------------------------------------------------------------------------------- /test/tenbytenraster.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/tenbytenraster.lic -------------------------------------------------------------------------------- /test/tenbytenraster.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/tenbytenraster.prj -------------------------------------------------------------------------------- /test/tenbytenraster.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/tenbytenraster.qml -------------------------------------------------------------------------------- /test/test_bivariate_legend_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/test_bivariate_legend_dockwidget.py -------------------------------------------------------------------------------- /test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/test_init.py -------------------------------------------------------------------------------- /test/test_qgis_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/test_qgis_environment.py -------------------------------------------------------------------------------- /test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/test_resources.py -------------------------------------------------------------------------------- /test/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/test_translations.py -------------------------------------------------------------------------------- /test/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/test/utilities.py -------------------------------------------------------------------------------- /update-plugins.xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webgeodatavore/bivariate_legend/HEAD/update-plugins.xml.py --------------------------------------------------------------------------------