├── COPYING ├── README.md ├── deploy.sh ├── deploy_resources_to_shared_drive.sh ├── make.sh ├── qgis-custom-0.9-2.tar.bz2 └── qgis-custom ├── apps ├── qgis-custom │ ├── WMTS_scales.xml │ ├── bin │ │ └── qgis-custom-ltr.reg │ ├── layout_checks.py │ ├── qgis-ltr-custom.bat.template │ ├── qgis_constrained_settings.py │ ├── qgis_constrained_settings.yml │ ├── qgis_global_settings.ini │ └── startup_project.qgs └── qgis-ltr │ └── python │ └── plugins │ ├── SpreadsheetLayers │ ├── CHANGELOG.md │ ├── README.rst │ ├── SpreadsheetLayersPlugin.py │ ├── __init__.py │ ├── help │ │ ├── .gitignore │ │ ├── locale │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ └── index.po │ │ ├── make.bat │ │ └── source │ │ │ ├── conf.py │ │ │ └── index.rst │ ├── i18n │ │ ├── .gitignore │ │ ├── SpreadsheetLayers_fr.ts │ │ └── SpreadsheetLayers_ru.ts │ ├── metadata.txt │ ├── plugin_upload.py │ ├── pylintrc │ ├── requirements.txt │ ├── resources │ │ ├── icon │ │ │ └── mActionAddSpreadsheetLayer.svg │ │ └── resources.qrc │ ├── ui │ │ ├── __init__.py │ │ ├── resources_rc.py │ │ └── ui_SpreadsheetLayersDialog.ui │ ├── util │ │ ├── __init__.py │ │ └── gdal_util.py │ └── widgets │ │ ├── SpreadsheetLayersDialog.py │ │ └── __init__.py │ ├── coordinator │ ├── __init__.py │ ├── coordinator.py │ ├── coordinator_dockwidget.py │ ├── coordinator_dockwidget_base.ui │ ├── funcs.py │ ├── help │ │ ├── help.css │ │ ├── images │ │ │ ├── capture.gif │ │ │ ├── screen_basics.png │ │ │ ├── screen_capture.png │ │ │ ├── screen_copy.png │ │ │ ├── screen_digitize.png │ │ │ ├── screen_labels.ai │ │ │ ├── screen_main.png │ │ │ └── screen_maptools.png │ │ └── index.html │ ├── i18n │ │ ├── coordinator_de.qm │ │ └── coordinator_fr.qm │ ├── metadata.txt │ ├── resources.py │ ├── resources.qrc │ └── test │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── data │ │ ├── europe.geojson │ │ ├── tenbytenraster.asc │ │ ├── tenbytenraster.keywords │ │ ├── tenbytenraster.lic │ │ ├── tenbytenraster.prj │ │ └── tenbytenraster.qml │ │ ├── qgis_interface.py │ │ ├── test_canvas.py │ │ ├── test_coordinator_dockwidget.py │ │ ├── test_init.py │ │ ├── test_integration.py │ │ ├── test_qgis_environment.py │ │ ├── test_resources.py │ │ ├── test_translations.py │ │ └── utilities.py │ ├── french_locator_filter │ ├── __about__.py │ ├── __init__.py │ ├── core │ │ ├── __init__.py │ │ └── locator_filter.py │ ├── gui │ │ ├── __init__.py │ │ ├── dlg_settings.py │ │ └── dlg_settings.ui │ ├── metadata.txt │ ├── plugin_main.py │ ├── resources.qrc │ ├── resources │ │ ├── help │ │ │ └── index.html │ │ ├── i18n │ │ │ ├── french_locator_filter_fr.qm │ │ │ ├── french_locator_filter_fr.ts │ │ │ └── plugin_translation.pro │ │ └── images │ │ │ └── icon.svg │ ├── resources_rc.py │ └── toolbelt │ │ ├── __init__.py │ │ ├── log_handler.py │ │ ├── network_manager.py │ │ ├── preferences.py │ │ └── translator.py │ ├── mask │ ├── Makefile │ ├── __init__.py │ ├── aeag_mask.png │ ├── aeag_mask.py │ ├── default_mask_style.qml │ ├── doc │ │ ├── en │ │ │ ├── about.html │ │ │ ├── legend_inmask.png │ │ │ └── tips.html │ │ └── fr │ │ │ ├── about.html │ │ │ ├── legend_inmask.png │ │ │ └── tips.html │ ├── htmldialog.py │ ├── i18n │ │ └── fr.qm │ ├── layerlist.py │ ├── maindialog.py │ ├── mask_filter.py │ ├── mask_parameters.py │ ├── metadata.txt │ ├── resources_rc.py │ ├── resources_rc.qrc │ ├── style_tools.py │ ├── ui_layer_list.py │ ├── ui_layer_list.ui │ ├── ui_plugin_mask.py │ └── ui_plugin_mask.ui │ ├── menu_from_project │ ├── __about__.py │ ├── __init__.py │ ├── doc │ │ ├── index-en.html │ │ └── index-fr.html │ ├── i18n │ │ ├── fr.qm │ │ └── fr.ts │ ├── logic │ │ ├── __init__.py │ │ ├── custom_datatypes.py │ │ ├── qgs_manager.py │ │ └── tools.py │ ├── menu_from_project.py │ ├── metadata.txt │ ├── plugin_translation.pro │ ├── resources │ │ ├── edit.svg │ │ ├── gear.svg │ │ ├── globe.svg │ │ └── menu_from_project.png │ └── ui │ │ ├── __init__.py │ │ ├── conf_dialog.ui │ │ └── menu_conf_dlg.py │ ├── qNote │ ├── README.rst │ ├── __init__.py │ ├── metadata.txt │ ├── qnote.py │ └── ui_qnote.ui │ └── redLayer │ ├── .gitattributes │ ├── .github │ ├── dependabot.yml │ └── workflows │ │ └── linter.yml │ ├── .gitignore │ ├── CHANGELOG.txt │ ├── README.md │ ├── __init__.py │ ├── i18n │ ├── redLayer.pro │ ├── redLayer_fr.qm │ └── redLayer_fr.ts │ ├── icons │ ├── canvas.svg │ ├── colorBlack.png │ ├── colorBlue.png │ ├── colorGreen.png │ ├── colorPalette.png │ ├── colorRed.png │ ├── colorYellow.png │ ├── erase.svg │ ├── inbox.svg │ ├── note.svg │ ├── outbox.svg │ ├── pen.svg │ ├── readme_menu.png │ ├── readme_menu_disabled.png │ ├── readme_screen.png │ ├── remove.svg │ ├── sketch.svg │ ├── toLayer.svg │ ├── width16.png │ ├── width2.png │ ├── width4.png │ └── width8.png │ ├── metadata.txt │ ├── note_class_dialog.py │ ├── redLayerModule.py │ ├── redLayerModule_dialog.py │ ├── redLayerModule_dialog_base.ui │ ├── setup.cfg │ ├── sketchLayerStyle.qml │ ├── tests │ ├── dev │ │ └── dev_qfile_dialog.py │ └── fixtures │ │ └── patatoid_around_south_america.sketch │ └── ui_note_dialog.ui ├── etc ├── postinstall │ └── qgis-custom.bat └── preremove │ └── qgis-custom.bat └── setup.hint /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy_resources_to_shared_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/deploy_resources_to_shared_drive.sh -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/make.sh -------------------------------------------------------------------------------- /qgis-custom-0.9-2.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom-0.9-2.tar.bz2 -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/WMTS_scales.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/WMTS_scales.xml -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/bin/qgis-custom-ltr.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/bin/qgis-custom-ltr.reg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/layout_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/layout_checks.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/qgis-ltr-custom.bat.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/qgis-ltr-custom.bat.template -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/qgis_constrained_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/qgis_constrained_settings.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/qgis_constrained_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/qgis_constrained_settings.yml -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/qgis_global_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/qgis_global_settings.ini -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-custom/startup_project.qgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-custom/startup_project.qgs -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/CHANGELOG.md -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/README.rst -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/SpreadsheetLayersPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/SpreadsheetLayersPlugin.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .doctrees 3 | *.pot 4 | *.mo 5 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/locale/fr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/locale/fr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/make.bat -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/source/conf.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/help/source/index.rst -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/i18n/.gitignore: -------------------------------------------------------------------------------- 1 | *.qm 2 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/i18n/SpreadsheetLayers_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/i18n/SpreadsheetLayers_fr.ts -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/i18n/SpreadsheetLayers_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/i18n/SpreadsheetLayers_ru.ts -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/metadata.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/plugin_upload.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/pylintrc -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/requirements.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/resources/icon/mActionAddSpreadsheetLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/resources/icon/mActionAddSpreadsheetLayer.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/resources/resources.qrc -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/ui/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/ui/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/ui/resources_rc.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/ui/ui_SpreadsheetLayersDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/ui/ui_SpreadsheetLayersDialog.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/util/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/util/gdal_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/util/gdal_util.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/widgets/SpreadsheetLayersDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/widgets/SpreadsheetLayersDialog.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/SpreadsheetLayers/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/coordinator.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/coordinator_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/coordinator_dockwidget.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/coordinator_dockwidget_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/coordinator_dockwidget_base.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/funcs.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/help.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Helvetica, Calibri, Arial, sans-serif 3 | } -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/capture.gif -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_basics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_basics.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_capture.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_copy.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_digitize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_digitize.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_labels.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_labels.ai -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_main.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_maptools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/images/screen_maptools.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/help/index.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/i18n/coordinator_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/i18n/coordinator_de.qm -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/i18n/coordinator_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/i18n/coordinator_fr.qm -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/metadata.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/resources.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/resources.qrc -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/__main__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/europe.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/europe.geojson -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.asc -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.keywords: -------------------------------------------------------------------------------- 1 | title: Tenbytenraster 2 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.lic -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.prj -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/data/tenbytenraster.qml -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/qgis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/qgis_interface.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_canvas.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_coordinator_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_coordinator_dockwidget.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_init.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_integration.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_qgis_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_qgis_environment.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_resources.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/test_translations.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/coordinator/test/utilities.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/__about__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/core/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/core/locator_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/core/locator_filter.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/gui/dlg_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/gui/dlg_settings.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/gui/dlg_settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/gui/dlg_settings.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/metadata.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/plugin_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/plugin_main.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources.qrc -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/help/index.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/i18n/french_locator_filter_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/i18n/french_locator_filter_fr.qm -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/i18n/french_locator_filter_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/i18n/french_locator_filter_fr.ts -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/i18n/plugin_translation.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/i18n/plugin_translation.pro -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources/images/icon.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/resources_rc.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/log_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/log_handler.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/network_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/network_manager.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/preferences.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/french_locator_filter/toolbelt/translator.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/Makefile -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/aeag_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/aeag_mask.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/aeag_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/aeag_mask.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/default_mask_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/default_mask_style.qml -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/en/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/en/about.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/en/legend_inmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/en/legend_inmask.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/en/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/en/tips.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/fr/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/fr/about.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/fr/legend_inmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/fr/legend_inmask.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/fr/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/doc/fr/tips.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/htmldialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/htmldialog.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/i18n/fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/i18n/fr.qm -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/layerlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/layerlist.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/maindialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/maindialog.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/mask_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/mask_filter.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/mask_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/mask_parameters.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/metadata.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/resources_rc.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/resources_rc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/resources_rc.qrc -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/style_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/style_tools.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_layer_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_layer_list.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_layer_list.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_layer_list.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_plugin_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_plugin_mask.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_plugin_mask.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/mask/ui_plugin_mask.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/__about__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/doc/index-en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/doc/index-en.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/doc/index-fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/doc/index-fr.html -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/i18n/fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/i18n/fr.qm -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/i18n/fr.ts -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/logic/custom_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/logic/custom_datatypes.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/logic/qgs_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/logic/qgs_manager.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/logic/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/logic/tools.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/menu_from_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/menu_from_project.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/metadata.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/plugin_translation.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/plugin_translation.pro -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/edit.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/gear.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/globe.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/menu_from_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/resources/menu_from_project.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/ui/conf_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/ui/conf_dialog.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/ui/menu_conf_dlg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/menu_from_project/ui/menu_conf_dlg.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/qNote/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/qNote/README.rst -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/qNote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/qNote/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/qNote/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/qNote/metadata.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/qNote/qnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/qNote/qnote.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/qNote/ui_qnote.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/qNote/ui_qnote.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.gitattributes -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.github/dependabot.yml -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.github/workflows/linter.yml -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/.gitignore -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/CHANGELOG.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/README.md -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/__init__.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/i18n/redLayer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/i18n/redLayer.pro -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/i18n/redLayer_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/i18n/redLayer_fr.qm -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/i18n/redLayer_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/i18n/redLayer_fr.ts -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/canvas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/canvas.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorBlack.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorBlue.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorGreen.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorPalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorPalette.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorRed.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/colorYellow.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/erase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/erase.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/inbox.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/note.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/outbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/outbox.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/pen.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/readme_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/readme_menu.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/readme_menu_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/readme_menu_disabled.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/readme_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/readme_screen.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/remove.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/sketch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/sketch.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/toLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/toLayer.svg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width16.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width2.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width4.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/icons/width8.png -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/metadata.txt -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/note_class_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/note_class_dialog.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/redLayerModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/redLayerModule.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/redLayerModule_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/redLayerModule_dialog.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/redLayerModule_dialog_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/redLayerModule_dialog_base.ui -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/setup.cfg -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/sketchLayerStyle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/sketchLayerStyle.qml -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/tests/dev/dev_qfile_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/tests/dev/dev_qfile_dialog.py -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/tests/fixtures/patatoid_around_south_america.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/tests/fixtures/patatoid_around_south_america.sketch -------------------------------------------------------------------------------- /qgis-custom/apps/qgis-ltr/python/plugins/redLayer/ui_note_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/apps/qgis-ltr/python/plugins/redLayer/ui_note_dialog.ui -------------------------------------------------------------------------------- /qgis-custom/etc/postinstall/qgis-custom.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/etc/postinstall/qgis-custom.bat -------------------------------------------------------------------------------- /qgis-custom/etc/preremove/qgis-custom.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/etc/preremove/qgis-custom.bat -------------------------------------------------------------------------------- /qgis-custom/setup.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haubourg/custom-osgeo4w-qgis/HEAD/qgis-custom/setup.hint --------------------------------------------------------------------------------