├── .docker └── Dockerfile ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LoadThemAll ├── LICENSE ├── LoadThemAll.py ├── Makefile ├── __init__.py ├── core │ ├── Enums.py │ ├── FileFormatConfiguration.py │ ├── Filter.py │ ├── LayerTypes.py │ ├── LoadConfiguration.py │ ├── LoadFiles.py │ ├── LoadThemAllResult.py │ ├── QGISLayerTree.py │ ├── Utils.py │ └── __init__.py ├── gui │ ├── BaseLoadThemAllDialog.py │ ├── LoadThemAllDialog.py │ └── __init__.py ├── i18n │ ├── loadthemall.pro │ ├── loadthemall_es.qm │ ├── loadthemall_es.ts │ ├── loadthemall_fr.qm │ └── loadthemall_fr.ts ├── metadata.txt ├── resources │ ├── __init__.py │ ├── dir.png │ ├── icon.png │ ├── logo_80x94.png │ ├── resources.qrc │ └── resources_rc.py └── ui │ ├── Ui_Base_LoadThemAll.py │ ├── Ui_Base_LoadThemAll.ui │ ├── Ui_DockWidget.py │ ├── Ui_DockWidget.ui │ └── __init__.py ├── README.md ├── changelog.txt ├── requirements.txt ├── run-docker-tests.sh └── tests ├── test_compressed_layers.py ├── test_core_utils.py ├── test_load_point_clouds.py ├── test_load_rasters.py ├── test_load_vectors.py ├── test_plugin_load.py └── utils.py /.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/.docker/Dockerfile -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/.gitignore -------------------------------------------------------------------------------- /LoadThemAll/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/LICENSE -------------------------------------------------------------------------------- /LoadThemAll/LoadThemAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/LoadThemAll.py -------------------------------------------------------------------------------- /LoadThemAll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/Makefile -------------------------------------------------------------------------------- /LoadThemAll/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/__init__.py -------------------------------------------------------------------------------- /LoadThemAll/core/Enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/Enums.py -------------------------------------------------------------------------------- /LoadThemAll/core/FileFormatConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/FileFormatConfiguration.py -------------------------------------------------------------------------------- /LoadThemAll/core/Filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/Filter.py -------------------------------------------------------------------------------- /LoadThemAll/core/LayerTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/LayerTypes.py -------------------------------------------------------------------------------- /LoadThemAll/core/LoadConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/LoadConfiguration.py -------------------------------------------------------------------------------- /LoadThemAll/core/LoadFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/LoadFiles.py -------------------------------------------------------------------------------- /LoadThemAll/core/LoadThemAllResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/LoadThemAllResult.py -------------------------------------------------------------------------------- /LoadThemAll/core/QGISLayerTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/QGISLayerTree.py -------------------------------------------------------------------------------- /LoadThemAll/core/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/core/Utils.py -------------------------------------------------------------------------------- /LoadThemAll/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LoadThemAll/gui/BaseLoadThemAllDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/gui/BaseLoadThemAllDialog.py -------------------------------------------------------------------------------- /LoadThemAll/gui/LoadThemAllDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/gui/LoadThemAllDialog.py -------------------------------------------------------------------------------- /LoadThemAll/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LoadThemAll/i18n/loadthemall.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/i18n/loadthemall.pro -------------------------------------------------------------------------------- /LoadThemAll/i18n/loadthemall_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/i18n/loadthemall_es.qm -------------------------------------------------------------------------------- /LoadThemAll/i18n/loadthemall_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/i18n/loadthemall_es.ts -------------------------------------------------------------------------------- /LoadThemAll/i18n/loadthemall_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/i18n/loadthemall_fr.qm -------------------------------------------------------------------------------- /LoadThemAll/i18n/loadthemall_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/i18n/loadthemall_fr.ts -------------------------------------------------------------------------------- /LoadThemAll/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/metadata.txt -------------------------------------------------------------------------------- /LoadThemAll/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LoadThemAll/resources/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/resources/dir.png -------------------------------------------------------------------------------- /LoadThemAll/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/resources/icon.png -------------------------------------------------------------------------------- /LoadThemAll/resources/logo_80x94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/resources/logo_80x94.png -------------------------------------------------------------------------------- /LoadThemAll/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/resources/resources.qrc -------------------------------------------------------------------------------- /LoadThemAll/resources/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/resources/resources_rc.py -------------------------------------------------------------------------------- /LoadThemAll/ui/Ui_Base_LoadThemAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/ui/Ui_Base_LoadThemAll.py -------------------------------------------------------------------------------- /LoadThemAll/ui/Ui_Base_LoadThemAll.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/ui/Ui_Base_LoadThemAll.ui -------------------------------------------------------------------------------- /LoadThemAll/ui/Ui_DockWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/ui/Ui_DockWidget.py -------------------------------------------------------------------------------- /LoadThemAll/ui/Ui_DockWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/LoadThemAll/ui/Ui_DockWidget.ui -------------------------------------------------------------------------------- /LoadThemAll/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/changelog.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nose2 2 | -------------------------------------------------------------------------------- /run-docker-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/run-docker-tests.sh -------------------------------------------------------------------------------- /tests/test_compressed_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/tests/test_compressed_layers.py -------------------------------------------------------------------------------- /tests/test_core_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/tests/test_core_utils.py -------------------------------------------------------------------------------- /tests/test_load_point_clouds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/tests/test_load_point_clouds.py -------------------------------------------------------------------------------- /tests/test_load_rasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/tests/test_load_rasters.py -------------------------------------------------------------------------------- /tests/test_load_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/tests/test_load_vectors.py -------------------------------------------------------------------------------- /tests/test_plugin_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/tests/test_plugin_load.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gacarrillor/loadthemall/HEAD/tests/utils.py --------------------------------------------------------------------------------