├── Config.py ├── icon.png ├── help ├── ui.PNG ├── Thumbs.db ├── search.PNG └── cadastral_layers.PNG ├── resources.qrc ├── i18n ├── Spanish_Inspire_Catastral_Downloader_es.qm ├── old │ ├── Spanish_Inspire_Catastral_Downloader_es.qm │ └── Spanish_Inspire_Catastral_Downloader_es.ts ├── Spanish_Inspire_Catastral_Downloader.pro └── Spanish_Inspire_Catastral_Downloader_es.ts ├── .gitignore ├── __init__.py ├── Spanish_Inspire_Catastral_Downloader_dialog.py ├── metadata.txt ├── README.md ├── Spanish_Inspire_Catastral_Downloader_dialog_base.ui ├── resources.py ├── Spanish_Inspire_Catastral_Downloader.py └── LICENSE /Config.py: -------------------------------------------------------------------------------- 1 | ''' 2 | Properties 3 | ''' 4 | #Proxy Config 5 | _proxy = "" 6 | _port = "" 7 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/HEAD/icon.png -------------------------------------------------------------------------------- /help/ui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/HEAD/help/ui.PNG -------------------------------------------------------------------------------- /help/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/HEAD/help/Thumbs.db -------------------------------------------------------------------------------- /help/search.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/HEAD/help/search.PNG -------------------------------------------------------------------------------- /help/cadastral_layers.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/HEAD/help/cadastral_layers.PNG -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | icon.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /i18n/Spanish_Inspire_Catastral_Downloader_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/HEAD/i18n/Spanish_Inspire_Catastral_Downloader_es.qm -------------------------------------------------------------------------------- /i18n/old/Spanish_Inspire_Catastral_Downloader_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/HEAD/i18n/old/Spanish_Inspire_Catastral_Downloader_es.qm -------------------------------------------------------------------------------- /i18n/Spanish_Inspire_Catastral_Downloader.pro: -------------------------------------------------------------------------------- 1 | FORMS = ../Spanish_Inspire_Catastral_Downloader_dialog_base.ui 2 | 3 | SOURCES = ../Spanish_Inspire_Catastral_Downloader.py \ 4 | ../Spanish_Inspire_Catastral_Downloader_dialog.py 5 | 6 | TRANSLATIONS = Spanish_Inspire_Catastral_Downloader_es.ts -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .project 3 | .pydevproject 4 | .settings/ 5 | # Byte-compiled / optimized / DLL files 6 | __pycache__/ 7 | *.py[cod] 8 | *$py.class 9 | 10 | # C extensions 11 | *.so 12 | 13 | # Distribution / packaging 14 | .Python 15 | env/ 16 | build/ 17 | develop-eggs/ 18 | dist/ 19 | downloads/ 20 | eggs/ 21 | .eggs/ 22 | lib/ 23 | lib64/ 24 | parts/ 25 | sdist/ 26 | var/ 27 | wheels/ 28 | *.egg-info/ 29 | .installed.cfg 30 | *.egg 31 | 32 | # PyInstaller 33 | # Usually these files are written by a python script from a template 34 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 35 | *.manifest 36 | *.spec 37 | 38 | # Installer logs 39 | pip-log.txt 40 | pip-delete-this-directory.txt 41 | 42 | # Unit test / coverage reports 43 | htmlcov/ 44 | .tox/ 45 | .coverage 46 | .coverage.* 47 | .cache 48 | nosetests.xml 49 | coverage.xml 50 | *.cover 51 | .hypothesis/ 52 | 53 | # Translations 54 | *.mo 55 | *.pot 56 | 57 | # Django stuff: 58 | *.log 59 | local_settings.py 60 | 61 | # Flask stuff: 62 | instance/ 63 | .webassets-cache 64 | 65 | # Scrapy stuff: 66 | .scrapy 67 | 68 | # Sphinx documentation 69 | docs/_build/ 70 | 71 | # PyBuilder 72 | target/ 73 | 74 | # Jupyter Notebook 75 | .ipynb_checkpoints 76 | 77 | # pyenv 78 | .python-version 79 | 80 | # celery beat schedule file 81 | celerybeat-schedule 82 | 83 | # SageMath parsed files 84 | *.sage.py 85 | 86 | # dotenv 87 | .env 88 | 89 | # virtualenv 90 | .venv 91 | venv/ 92 | ENV/ 93 | 94 | # Spyder project settings 95 | .spyderproject 96 | .spyproject 97 | 98 | # Rope project settings 99 | .ropeproject 100 | 101 | # mkdocs documentation 102 | /site 103 | 104 | # mypy 105 | .mypy_cache/ 106 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | /*************************************************************************** 4 | Spanish_Inspire_Catastral_Downloader 5 | A QGIS plugin 6 | Spanish Inspire Catastral Downloader 7 | ------------------- 8 | begin : 2017-06-18 9 | copyright : (C) 2017 by Patricio Soriano :: SIGdeletras.com 10 | email : pasoriano@sigdeletras.com 11 | git sha : $Format:%H$ 12 | ***************************************************************************/ 13 | 14 | /*************************************************************************** 15 | * * 16 | * This program is free software; you can redistribute it and/or modify * 17 | * it under the terms of the GNU General Public License as published by * 18 | * the Free Software Foundation; either version 2 of the License, or * 19 | * (at your option) any later version. * 20 | * * 21 | ***************************************************************************/ 22 | This script initializes the plugin, making it known to QGIS. 23 | """ 24 | # For Debug 25 | import sys 26 | try: 27 | sys.path.append( 28 | "D:\eclipse\plugins\org.python.pydev_6.2.0.201711281614\pysrc") 29 | except ImportError: 30 | None 31 | 32 | from .resources import * 33 | # noinspection PyPep8Naming 34 | def classFactory(iface): # pylint: disable=invalid-name 35 | """Load Spanish_Inspire_Catastral_Downloader class from file Spanish_Inspire_Catastral_Downloader. 36 | 37 | :param iface: A QGIS interface instance. 38 | :type iface: QgsInterface 39 | """ 40 | # 41 | from .Spanish_Inspire_Catastral_Downloader import Spanish_Inspire_Catastral_Downloader 42 | return Spanish_Inspire_Catastral_Downloader(iface) 43 | -------------------------------------------------------------------------------- /Spanish_Inspire_Catastral_Downloader_dialog.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | /*************************************************************************** 4 | Spanish_Inspire_Catastral_DownloaderDialog 5 | A QGIS plugin 6 | Spanish Inspire Catastral Downloader 7 | ------------------- 8 | begin : 2017-06-18 9 | git sha : $Format:%H$ 10 | copyright : (C) 2017 by Patricio Soriano :: SIGdeletras.com 11 | email : pasoriano@sigdeletras.com 12 | ***************************************************************************/ 13 | 14 | /*************************************************************************** 15 | * * 16 | * This program is free software; you can redistribute it and/or modify * 17 | * it under the terms of the GNU General Public License as published by * 18 | * the Free Software Foundation; either version 2 of the License, or * 19 | * (at your option) any later version. * 20 | * * 21 | ***************************************************************************/ 22 | """ 23 | 24 | # Import the PyQt and QGIS libraries 25 | from qgis.PyQt.QtCore import Qt 26 | import os 27 | # from PyQt5.QtWidgets import QDialog 28 | 29 | try: 30 | from qgis.core import Qgis 31 | from PyQt5.QtCore import * 32 | from PyQt5.QtGui import * 33 | from PyQt5.QtWidgets import * 34 | from PyQt5 import uic 35 | QT_VERSION=5 36 | os.environ['QT_API'] = 'pyqt5' 37 | except: 38 | from PyQt4.QtCore import * 39 | from PyQt4.QtGui import * 40 | from PyQt4 import uic 41 | QT_VERSION=4 42 | 43 | import os.path 44 | from qgis.core import * 45 | from qgis.gui import * 46 | from .resources import * 47 | 48 | 49 | FORM_CLASS, _ = uic.loadUiType(os.path.join( 50 | os.path.dirname(__file__), 'Spanish_Inspire_Catastral_Downloader_dialog_base.ui')) 51 | 52 | 53 | class Spanish_Inspire_Catastral_DownloaderDialog(QDialog, FORM_CLASS): 54 | def __init__(self, parent=None): 55 | """Constructor.""" 56 | super(Spanish_Inspire_Catastral_DownloaderDialog, self).__init__(parent) 57 | # Set up the user interface from Designer. 58 | # After setupUI you can access any designer object by doing 59 | # self., and you can use autoconnect slots - see 60 | # http://qt-project.org/doc/qt-4.8/designer-using-a-ui-file.html 61 | # #widgets-and-dialogs-with-auto-connect 62 | self.setupUi(self) 63 | -------------------------------------------------------------------------------- /i18n/old/Spanish_Inspire_Catastral_Downloader_es.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spanish_Inspire_Catastral_Downloader 6 | 7 | 8 | &Spanish Inspire Catastral Downloader 9 | &Descargada Catastro Inspire de España 10 | 11 | 12 | 13 | Spanish_Inspire_Catastral_DownloaderDialogBase 14 | 15 | 16 | Spanish Inspire Catastral Downloader 17 | Descargada Catastro Inspire de España 18 | 19 | 20 | 21 | Province 22 | Provincia 23 | 24 | 25 | 26 | Municipality 27 | Municipio 28 | 29 | 30 | 31 | Buildings 32 | Construcciones 33 | 34 | 35 | 36 | Addresses 37 | Direcciones 38 | 39 | 40 | 41 | Cadastral Parcels 42 | Parcelas catastrales 43 | 44 | 45 | 46 | Download folder 47 | Carpeta de descarga 48 | 49 | 50 | 51 | ... 52 | ... 53 | 54 | 55 | 56 | Download cadastral data 57 | Descargar datos catastrales 58 | 59 | 60 | 61 | Add layers to the QGIS project 62 | Añadir capas al proyecto QGIS 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- 1 | # This file contains metadata for your plugin. Since 2 | # version 2.0 of QGIS this is the proper way to supply 3 | # information about a plugin. The old method of 4 | # embedding metadata in __init__.py will 5 | # is no longer supported since version 2.0. 6 | 7 | # This file should be included when you package your plugin.# Mandatory items: 8 | 9 | [general] 10 | name=Spanish Inspire Catastral Downloader 11 | qgisMinimumVersion=3.00 12 | qgisMaximumVersion=3.99 13 | description=Descarga de cartografía catastral según Inspire 14 | version=2.1 15 | author=Patricio Soriano :: SIGdeletras.com 16 | email=pasoriano@sigdeletras.com 17 | 18 | about=

Plugin de QGIS para la descarga de datos catastrales de parcelas, edificios y direcciones de España. La descarga usa el servicio ATOM según la Directiva Inspire. http://www.catastro.minhap.gob.es/webinspire/index.html

QGIS Plugin for the download of cadastral data of parcels, buildings and addresses of Spain. The download uses the ATOM service according to the Inspire Directive. http://www.catastro.minhap.gob.es/webinspire/index_eng.html

19 | tracker=https://github.com/sigdeletras/Spanish_Inspire_Catastral_Downloader 20 | repository=https://github.com/sigdeletras/Spanish_Inspire_Catastral_Downloader 21 | # End of mandatory metadata 22 | 23 | # Recommended items: 24 | 25 | # Uncomment the following line and add your changelog: 26 | changelog= 27 | - 10.10.2024 V2.1: 28 | - Cambio en la dirección general del servicio de https://www.catastro.minhap.es a https://www.catastro.hacienda.gob.es 29 | - 12.10.2023 V2.0: 30 | - Integrado PR de Laura García de Marina https://github.com/lgarciademarina para integrar los listados de provincias y municipios desde los servicios de catastro 31 | - Se separa los pasos de descarga y añadir capas al proyecto 32 | - El complemento ya es solo compatible con versiones 3.* de QGIS 33 | - Añadidos más mensajes de aviso al usuario 34 | - No es ncesario convertir a geojson los GML. Se cargan ya directamente. 35 | - Revisiones y mejoras en el estilo de código 36 | - 22.06.2018 V1.1: Se cambia el nombre de la carpeta de descarga, dejándo solo el códifo INE. Soluciona problemas de espacios en la ruta utilizada para convertir los GML a GeoJSON. Ver Issue en GitHub 37 | - 17.06.2018 V1.0: PR de Fran Raga: Arregla errores de la API para QgsMessageBar. Para salvar el error de carga de GML en QGIS3, son convertidos a geojson. Sobre el PR de Fran: Añadido try/except para que pueda ser usado por QGIS 2.* Se añade el EPSG:25830 de salida para la conversión de los geojson. 38 | - 11.06.2018 V0.6: Errores en nombres de municipios con cedilla (issue Carlos Cámara). Bajada de versión hasta 2.99 por fallo de carga del GML en QGIS 3 y error en la API. 39 | - 09.09.2017 V0.5: Barra de progreso. Mejora en la interfaz e iconos. Descarga bajo un proxy. Codificación. (PR de Francisco Raga) 40 | - 28.08.2017 V0.4: Cambios para QGIS3 41 | - 28.08.2017 V0.3.1: Errores en nombres de municipios con punto. 42 | - 21.07.2017 V0.3: Corregidos paths para que funcione en todos los OS (por Raúl Nanclares) 43 | - 21.07.2017 V0.2: Se añaden las "gerencias" de Gijón, Jerez, Vigo, Ceuta y Melilla (por Francisco Pérez Sampayo) 44 | - 19.07.2017 V0.1: Primera versión 45 | 46 | # Tags are comma separated with spaces allowed 47 | tags=cadastre, inspire, catastro, Spain, España, ATOM, INSPIRE 48 | 49 | homepage=https://github.com/sigdeletras/Spanish_Inspire_Catastral_Downloader 50 | category=Plugins 51 | icon=icon.png 52 | # experimental flag 53 | experimental=False 54 | 55 | # deprecated flag (applies to the whole plugin, not just a single version) 56 | deprecated=False 57 | 58 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Spanish Inspire Catastral Downloader (V2.0) 2 | 3 | 4 | Plugin de QGIS para la descarga de datos catastrales de parcelas, edificios y direcciones de España. La descarga usa el servicio ATOM según la Directiva Inspire. (http://www.catastro.minhap.gob.es/webinspire/index.html) 5 | 6 | QGIS Plugin for the download of cadastral data of parcels, buildings and addresses of Spain. The download uses the ATOM service according to the Inspire Directive. (http://www.catastro.minhap.gob.es/webinspire/index_eng.html) 7 | 8 | Para más información puede consultarse la entrada en [SIGdeletras.com](http://www.sigdeletras.com/2017/blog/plugin-de-qgis-para-descarga-de-datos-catastrales-inspire/) 9 | 10 | ## Instalar plugin 11 | 12 | **Disponible para QGIS >3.*** 13 | 14 | El complemento puede ser instalado desde el menú Complementos>Administrar e instalar complementos de QGIS. Para localizar de forma rápida el complemento puede introducirse el término "catastro" en la herramienta de búsqueda. 15 | 16 | 17 | 18 | Igualmente, puede descargarse el archivo zip desde este repositorio y descomprimirlo en la carpeta de plugins de QGIS según el sistema operativo. 19 | 20 | ## Uso 21 | 22 | Tras su instalación el plugin puede ser ejecutado desde la barra de herramientas o bien desde el menú Complementos>Descarga Catrastro Inspire o bien Spanish Inspire Catastral Downloader si tenemos instalado QGIS en otro idioma. 23 | 24 | 25 | 26 | Una vez ejecutado el complemento se debe obligatoriamente: 27 | 33 | 34 | El programa descarca los GML correspondientes dentro de una carpeta con el código INE del municipio seleccionado. 35 | 36 | Si se desea añadir las capas GML descargardas al proyecto QGIS activo se debe marcar la casilla correspondiente. 37 | 38 | ### Conjunto de datos INSPIRE de la Dirección General de Catastro 39 | 40 | Los archivos geográficos (GML) contenidos en cada conjunto de datos son: 41 | 42 | - **Conjunto de Datos de Parcela Catastral** (CP Cadastral Parcel) 43 | - *CadastralParcel*. Parcela catastral. 44 | - *CadastralZoning*. Manzanas en suelo urbano o a los polígonos en suelo rústico. 45 | - **Conjunto de Datos de Edificios** (BU Buildings) 46 | - *Building*. Edificio. 47 | - *BuildingPart*. Cada una de las construcciones de una parcela catastral que tiene volumen homogéneo, y pueden ser sobre y bajo rasante. 48 | - *OtherConstructions*. Piscinas que contienen el atributo OtherConstructionNatureValue calificado cómo openAirPool. 49 | - **Conjunto de Datos de Direcciones** (AD Addresses) 50 | - *Address*. Geometría del punto donde georreferencia la dirección física (centroide de la parcela o entrada del portal) 51 | 52 | El PDF con la descripción completa de la estructura de datos puede consultarse en el siguiente [enlace](http://www.catastro.minhap.es/webinspire/documentos/Conjuntos%20de%20datos.pdf) 53 | 54 | 55 | 56 | ## Changelog 57 | - 12.10.2023 V2.0: 58 | - El complemento ya es solo compatible con versiones 3.* de QGIS 59 | - Integrado PR de [Laura García de Marina](https://github.com/lgarciademarina) para integrar los listados de provincias y municipios desde los servicios API de Catastro 60 | - Se separa los pasos de descarga y añadir capas al proyecto 61 | - Añadidos más mensajes de aviso al usuario 62 | - No es necesario convertir a geojson los GML. Se cargan los GML directamente. 63 | - Revisiones y mejoras en el estilo de código. 64 | - 22.06.2018 V1.1: Se cambia el nombre de la carpeta de descarga, dejándo solo el códifo INE. Soluciona problemas de espacios en la ruta utilizada para convertir los GML a GeoJSON. 65 | - 17.06.2018 V1.0: PR de Fran Raga: Arregla errores de la API para QgsMessageBar. Para salvar el error de carga de GML en QGIS3, son convertidos a geojson. Sobre el PR de Fran: Añadido try/except para que pueda ser usado por QGIS 2.* Se añade el EPSG:25830 de salida para la conversión de los geojson. 66 | - 11.06.2018 V0.6: Errores en nombres de municipios con cedilla (issue de [Carlos Cámara](https://github.com/ccamara) . Bajada de versión hasta 2.99 por fallo de carga del GML en QGIS 3 y error en la API. 67 | - 09.09.2017 V0.5: Barra de progreso. Mejora en la interfaz e iconos. Descarga bajo un proxy. Codificación. (PR de [Francisco Raga](https://github.com/All4Gis). 68 | - 28.08.2017 V0.4: Cambios para QGIS3 69 | - 28.08.2017 V0.3.1: Errores en nombres de municipios con punto. 70 | - 21.07.2017 V0.3: Corregidos paths para que funcione en todos los OS (por Raúl Nanclares) 71 | - 21.07.2017 V0.2: Se añaden las "gerencias" de Gijón, Jerez, Vigo, Ceuta y Melilla (por Francisco Pérez Sampayo) 72 | - 19.07.2017 V0.1: Primera versión 73 | -------------------------------------------------------------------------------- /i18n/Spanish_Inspire_Catastral_Downloader_es.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spanish_Inspire_Catastral_Downloader 6 | 7 | 8 | &Spanish Inspire Catastral Downloader 9 | &Spanish Inspire Catastral Downloader 10 | 11 | 12 | 13 | Error converting files to GML 14 | Error al convertir los ficheros a GML 15 | 16 | 17 | 18 | The data set was not found. 19 | El conjunto de datos no ha sido encontrado. 20 | 21 | 22 | 23 | Files downloaded correctly in 24 | Archivos descargados correctamente en 25 | 26 | 27 | 28 | Select at least one data set to download 29 | Seleccione al menos un conjunto de datos a descargar 30 | 31 | 32 | 33 | Select a province... 34 | Seleccionar una provincia... 35 | 36 | 37 | 38 | You must complete the data of the province and municipality and indicate the download route. 39 | Debe completar el dato de la provincia y el municipio e indicar la ruta de descargar. 40 | 41 | 42 | 43 | You must select at least one cadastral entity to download. 44 | Debe seleccionar al menos una entidad catastral a descargar. 45 | 46 | 47 | 48 | The data set already exists in the folder 49 | Ya existen datos en la carpeta indicada 50 | 51 | 52 | 53 | You must delete them first if you want to download them to the same location 54 | Debe borrar los datos previamentoe si quiere descarcarlos en la misma ubicación 55 | 56 | 57 | 58 | An error occurred while decompressing the file. 59 | Se ha producido un error al descomprimir el fichero. 60 | 61 | 62 | 63 | Error setting proxy 64 | Error al configurar el proxy 65 | 66 | 67 | 68 | Failed! 69 | ¡Fallló! 70 | 71 | 72 | 73 | Spanish_Inspire_Catastral_DownloaderDialogBase 74 | 75 | 76 | Spanish Inspire Catastral Downloader 77 | Spanish Inspire Catastral Downloader 78 | 79 | 80 | 81 | Province 82 | Provincia 83 | 84 | 85 | 86 | Municipality 87 | Municipio 88 | 89 | 90 | 91 | Buildings 92 | Construcciones 93 | 94 | 95 | 96 | Addresses 97 | Direcciones 98 | 99 | 100 | 101 | Cadastral Parcels 102 | Parcelas catastrales 103 | 104 | 105 | 106 | Download folder 107 | Carpeta de descarga 108 | 109 | 110 | 111 | ... 112 | 113 | 114 | 115 | 116 | Download cadastral data 117 | Descargar datos de catastro 118 | 119 | 120 | 121 | Add layers to the QGIS project 122 | Añadir capas al proyecto QGIS 123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /Spanish_Inspire_Catastral_Downloader_dialog_base.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | Spanish_Inspire_Catastral_DownloaderDialogBase 4 | 5 | 6 | 7 | 0 8 | 0 9 | 622 10 | 294 11 | 12 | 13 | 14 | Spanish Inspire Catastral Downloader 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 0 24 | 0 25 | 26 | 27 | 28 | Province 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 0 37 | 0 38 | 39 | 40 | 41 | Municipality 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 0 50 | 0 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 0 63 | 0 64 | 65 | 66 | 67 | Qt::DefaultContextMenu 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 0 83 | 0 84 | 85 | 86 | 87 | 88 | 89 | 90 | Buildings 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 0 99 | 0 100 | 101 | 102 | 103 | 104 | 105 | 106 | Addresses 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 0 115 | 0 116 | 117 | 118 | 119 | 120 | 121 | 122 | Cadastral Parcels 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | Download folder 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 0 142 | 23 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 0 152 | 0 153 | 154 | 155 | 156 | ... 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | Download cadastral data 169 | 170 | 171 | 172 | 173 | 174 | 175 | Add layers to the QGIS project 176 | 177 | 178 | 179 | 180 | 181 | 182 | Qt::Vertical 183 | 184 | 185 | 186 | 20 187 | 40 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | Qt::Horizontal 198 | 199 | 200 | 201 | 40 202 | 20 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 0 212 | 0 213 | 214 | 215 | 216 | Qt::Horizontal 217 | 218 | 219 | QDialogButtonBox::Close 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 0 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | button_box 238 | accepted() 239 | Spanish_Inspire_Catastral_DownloaderDialogBase 240 | accept() 241 | 242 | 243 | 20 244 | 20 245 | 246 | 247 | 20 248 | 20 249 | 250 | 251 | 252 | 253 | button_box 254 | rejected() 255 | Spanish_Inspire_Catastral_DownloaderDialogBase 256 | reject() 257 | 258 | 259 | 20 260 | 20 261 | 262 | 263 | 20 264 | 20 265 | 266 | 267 | 268 | 269 | 270 | -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | # Resource object code 4 | # 5 | # Created: ma. 18. jul. 12:02:46 2017 6 | # 7 | # WARNING! All changes made in this file will be lost! 8 | 9 | try: 10 | from PyQt5 import QtCore 11 | 12 | except: 13 | from PyQt4 import QtCore 14 | 15 | qt_resource_data = b"\ 16 | \x00\x00\x08\x15\ 17 | \x89\ 18 | \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ 19 | \x00\x00\x31\x00\x00\x00\x32\x08\x06\x00\x00\x00\xf5\x08\x33\xb2\ 20 | \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ 21 | \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\x1e\x00\x00\x01\x1e\ 22 | \x01\xa0\x4d\x2b\x13\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ 23 | \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ 24 | \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x07\x92\x49\x44\ 25 | \x41\x54\x68\x81\xdd\x99\x5f\x4c\x5b\xd7\x1d\xc7\xbf\xe7\xfe\x31\ 26 | \xf7\xfa\x62\xf0\x8c\x31\x21\xad\x01\x3b\x5e\xa0\xa5\x4e\x9b\xc4\ 27 | \xf9\x83\x84\x34\x29\x6b\x4b\x94\xa8\x5b\xb2\x04\x36\x95\x54\x0a\ 28 | \x99\x54\xed\x65\xd2\xfa\xb0\xa7\x6d\xda\xc3\x14\x4d\x79\x5c\xb5\ 29 | \xa5\xda\x43\x5f\x26\xe5\x85\x54\x63\x8b\x06\xd9\x28\x89\xaa\x22\ 30 | \x4a\x08\x09\x4b\xda\xc0\x0a\x14\x90\xcd\xbf\x98\x4b\xc0\x06\xae\ 31 | \xed\x7b\xaf\xef\xbd\x7b\x20\xa6\xc9\xc0\xd8\xbe\xd8\xc9\xda\xef\ 32 | \x93\x7d\xcf\xef\xfc\x7e\xe7\x73\xcf\x3d\xbf\x73\xee\xef\x12\x3c\ 33 | \x27\x19\x1f\xfd\xe6\x03\x4c\xdc\x6e\xc1\xc4\x6d\xc0\xd0\x01\x35\ 34 | \xb6\xb5\x21\xa1\x01\x96\x7f\xfa\x5a\xe5\x5e\xe0\xf0\x59\xe0\x48\ 35 | \xcb\x10\x71\x56\xbf\xc1\x14\x7e\xb8\x9b\x65\x7c\xf0\xce\x87\xb8\ 36 | \xd7\xf9\x03\x2c\x06\x1d\x50\xe3\x00\x0c\x00\x24\x8d\xb1\x8e\x75\ 37 | \x9b\x27\x34\x3f\x0a\xdc\xfe\x08\x58\x9e\x2b\x01\x80\xe7\x02\x81\ 38 | \xaf\xfa\x5f\xc6\xda\xa2\x13\x72\x9a\xbb\xff\xbf\x32\xf4\xa7\xff\ 39 | \x2b\x31\x60\x7e\x14\xba\x41\x55\x88\xa2\xf8\xee\xf3\x81\x78\x14\ 40 | \x44\xda\x3b\x9f\xad\x94\x38\xe2\xd2\xaa\x6b\x78\x78\xf8\x3c\x95\ 41 | \x97\x41\x3d\x27\x49\x8a\xc6\x8f\x8e\x8e\xd6\x7e\xa3\x21\x92\x49\ 42 | \x15\xa2\x28\xe2\x1b\x0d\x91\xd2\xb7\x02\x62\x63\x61\xcf\xcd\xcd\ 43 | \xfd\xce\x30\x8c\x13\x9a\xa6\x41\x55\x55\xd3\x0e\x29\x8a\x02\xcb\ 44 | \xb2\x20\x84\x80\xa2\xa8\x5f\x57\x56\x56\x5e\xcf\xa6\x9f\x64\xb1\ 45 | \x63\x46\xa8\xc1\x18\xb7\x07\x2b\xc5\xbb\x71\x64\xf1\x53\xf8\x96\ 46 | \xef\x6f\xd3\xc3\x00\x0c\x6d\x1d\x42\x14\xc5\x9f\x49\x92\x14\x90\ 47 | \x65\xf9\x75\x42\x48\xb5\x61\x18\x20\xc4\x7c\xe6\x30\x0c\x03\xc9\ 48 | \x64\x32\xf5\xfb\xb7\xa1\x50\xe8\x75\x8e\xe3\x7a\x5c\x2e\xd7\x26\ 49 | \x18\x95\xe6\xf0\xef\xef\x1c\xc6\x3d\xba\x06\x63\x8f\x12\x90\x63\ 50 | \x1c\xf6\x17\x5b\xf0\xd6\xcc\x5f\x51\x1e\x9f\xcd\x26\xd8\x3a\x84\ 51 | \x2c\xcb\xef\x18\x86\xb1\xdf\x30\x0c\xde\x78\x7c\x71\xa7\xd2\xf5\ 52 | \x8d\xbc\x7e\x44\xd7\x75\xaf\xa2\x28\xee\x70\x38\xac\x55\x54\x54\ 53 | \x74\x03\x80\xca\xf0\x54\x8f\xb3\x09\x77\x25\x1b\x7a\xef\x87\xb0\ 54 | \xb4\x7c\x0f\x6f\x04\xea\xf1\x13\xeb\x38\x02\x33\xb7\x36\x06\x97\ 55 | \x91\x01\x80\xa6\x69\x60\x64\x59\xde\x4b\x08\xe1\x33\xf6\x30\x29\ 56 | \x5d\xd7\xcb\x25\x49\x3a\x16\x8b\xc5\x24\x00\xdd\x97\x2e\x5d\xfa\ 57 | \xe9\x1f\x1e\x85\xfc\x9d\xb7\x86\xb1\xba\x3a\x09\x42\x08\x4e\x37\ 58 | \xee\xc7\xdb\x6a\x1f\x6a\x96\xbe\xca\xcd\xb9\x61\x40\xd7\xf5\x67\ 59 | \xb3\x63\x47\xa3\xd1\xb2\xf1\xf1\xf1\xfa\x8b\x17\x2f\x5e\x1d\x1c\ 60 | \x1c\x3c\x3e\x35\x35\xb5\x71\xd3\xde\x3c\xfc\x0a\xce\xab\x9f\x60\ 61 | \xb7\x14\x34\xed\xff\x99\x40\x48\x92\x84\x60\x30\x58\x77\xf3\xe6\ 62 | \xcd\x03\x91\x48\x84\x4e\x5d\xf7\xfb\xaa\x71\x9a\x9b\xc2\xee\x25\ 63 | \xf3\x00\xc0\x33\x48\xb1\xaa\xaa\xe2\xce\x9d\x3b\xe8\xea\xea\xb2\ 64 | \x3d\x09\xc0\xb2\x2c\x9a\xbc\x25\x08\x2c\xf5\x9b\xf4\x4c\x00\x6a\ 65 | \x7d\x0e\x0a\x3a\x13\x9a\xa6\xa1\xa7\xa7\x07\x1d\x1d\x1d\x90\x65\ 66 | \xf9\xa9\xb6\x37\x03\x2f\xe1\xe4\x52\x57\x5e\xe2\x14\x74\x26\xfa\ 67 | \xfa\xfa\xd0\xde\xde\xbe\x09\x40\x10\x04\x34\xd8\x15\xd8\xe4\x65\ 68 | \xd3\xbe\x93\x14\x07\x99\x71\x80\xa6\xe9\xc2\x41\x8c\x8e\x8e\xa2\ 69 | \xb3\xb3\x13\x6b\x6b\x6b\x9b\xda\x0e\xbd\xe6\x7f\x74\x54\x1a\xf9\ 70 | \x3c\x49\x99\x4b\x8a\x49\x8a\x47\xd8\xf2\x22\xbe\xe4\x7c\xa0\x28\ 71 | \xaa\x30\x8f\x93\x2c\xcb\x18\x18\x18\xc0\xe4\xe4\xe4\xa6\x36\x9a\ 72 | \xa6\x61\x2f\xdf\x35\x30\xad\xbd\xbc\x94\x64\x77\xed\xd3\x62\x4b\ 73 | \x39\xfb\x4f\x52\x56\x84\x2d\x95\x98\xb2\x56\xc3\x66\xb3\x15\x06\ 74 | \x62\x70\x70\x10\xdd\xdd\xdd\x5b\xb6\xb9\xdd\xee\x44\x49\x49\xc9\ 75 | \x9f\xbe\x70\x9e\xf0\x47\xa3\xd1\xc9\x68\x34\xea\x4d\x24\x12\x39\ 76 | \xc7\xa0\x69\x1a\xa5\xa5\xa5\xaa\xc7\xe3\x11\xf3\x0e\x91\x48\x24\ 77 | \x30\x3c\x3c\xbc\x69\x1d\xa4\x54\x53\x53\x33\x5d\x59\x59\xd9\xd3\ 78 | \xd2\xd2\xd2\xd5\xd1\xd1\x91\x28\x2a\x2a\xfa\x45\x28\x14\xca\x39\ 79 | \x8e\xd5\x6a\x45\x55\x55\x55\xa4\xa1\xa1\xe1\xe3\xbc\x43\x3c\x78\ 80 | \xf0\x00\x7d\x7d\x7d\x69\xdb\x6d\x36\x5b\xb0\xa5\xa5\x45\x01\x80\ 81 | \x53\xa7\x4e\xbd\x7f\xf5\xea\xd5\x3f\x8e\x8c\x8c\xe4\x1c\xa7\xb9\ 82 | \xb9\x19\xaa\xaa\xc2\xe9\x74\x1a\x64\x62\x62\x42\x24\x84\x38\xcd\ 83 | \x0c\x38\x1c\x0e\x63\x76\x76\x16\xa2\x28\x22\x16\x5b\x7f\x5f\x5e\ 84 | \x5e\x5e\xc6\xf5\xeb\x5b\x1f\x5c\x79\x9e\xc7\xaf\xda\x5e\x5a\x3a\ 85 | \xbe\x67\x68\x21\xad\x53\xae\x0a\xb0\xd5\x01\xf6\x43\x80\xb0\xe7\ 86 | \x1f\xc4\xfe\xea\x2f\x33\x8d\xc3\xd4\x4c\x68\x9a\x86\x87\x0f\x1f\ 87 | \x22\x18\x0c\x22\x1c\x0e\x43\x92\xa4\xf5\x83\x18\xc3\x60\x7a\x7a\ 88 | \x3a\x6d\x3f\x57\xb9\x03\x75\xe5\xa2\x03\x20\x8e\xb4\x46\x8a\x08\ 89 | \xac\xa8\x00\x08\xa0\xad\x0e\x65\x33\x1e\x53\x29\x56\xd7\x75\x04\ 90 | \x83\x41\xcc\xcf\xcf\x83\x65\x59\xf8\x7c\x3e\xd4\xd7\xd7\xdf\x25\ 91 | \x84\xfc\x2b\x18\x4c\x7f\x84\xf0\xba\x1d\x70\x59\x33\x64\x23\x3d\ 92 | \x01\xc8\x0b\x40\xf4\x3e\xb4\xc8\xb0\x47\x14\xc5\x93\x99\xc6\x63\ 93 | \x1a\x62\x61\x61\x01\x1c\xc7\xa1\xba\xba\xfa\x61\x6d\x6d\xed\xf5\ 94 | \x40\x20\xf0\xbe\xae\xeb\xea\xea\xea\x6a\xda\x7e\xa5\x36\x1e\x3c\ 95 | \x1d\x4f\xdb\xfe\x44\x04\x40\x11\x21\xad\x45\x6a\x67\x67\x67\x7f\ 96 | \x9c\xc9\xda\xf4\x66\x97\x48\x24\xe0\xf1\x78\xe0\xf3\xf9\x3e\x75\ 97 | \xbb\xdd\xbf\xf7\x7a\xbd\x7f\x51\x14\xa5\x74\xbb\x3e\x9c\x85\x80\ 98 | \x90\x6c\xdf\x59\x74\x44\x56\xe2\x8e\xb1\xb1\xb1\xda\x4c\x96\x3b\ 99 | \xda\xb1\x77\xed\xda\x15\xb2\xdb\xed\x57\x5c\x2e\x57\x2f\x00\xa8\ 100 | \xaa\x5a\xbc\x9d\x7d\x11\x9b\xdb\x1b\xa3\x24\xc5\x90\x4d\xfa\xcd\ 101 | \x7a\x61\x6b\x9a\xb6\xf1\xc6\x96\x4c\x26\x41\x51\x14\xba\xbb\xbb\ 102 | \xdf\xb3\xdb\xed\x0f\x2e\x5f\xbe\xec\x05\x80\xa9\xa9\x29\xeb\x76\ 103 | \x3e\x68\x8a\x60\x45\xb1\x01\x00\x2c\xb4\xb2\x51\x3e\x23\x04\xb0\ 104 | \x50\x9b\xf7\x95\x64\x52\xc5\x76\x8f\x67\xce\x10\xaa\xaa\xa2\xb7\ 105 | \xb7\x17\x93\x93\x93\xd0\x34\x0d\xcb\xcb\xcb\xd0\x34\xed\x43\x5d\ 106 | \xd7\x93\x29\x9b\xc5\xc5\xc5\x6d\x67\xe2\xb3\x7b\x73\xf8\xcf\xd4\ 107 | \x0b\x00\x00\x2b\xc7\x82\xa2\xbe\x9e\x99\xd2\x52\x3b\xaa\x5f\x28\ 108 | \xc5\xd9\x3d\xff\x04\x4b\xe5\x56\xa8\xc8\x1a\x82\xe3\x38\x34\x36\ 109 | \x36\x42\x92\x24\xb4\xb7\xb7\xa7\x2a\x22\xf6\x5c\x82\x7d\x39\xbe\ 110 | \x75\xe6\xb2\x5a\x79\xb4\x9d\x09\x98\x02\x00\x00\xaa\xa8\xa8\xe8\ 111 | \x73\x42\x88\x94\x8d\x31\xcf\xf3\x68\x6a\x6a\x42\x73\x73\x33\x58\ 112 | \x96\xcd\x39\xd8\x56\xb2\x5a\x79\x5c\x38\x73\x08\xe7\xf6\x0d\x98\ 113 | \x02\x00\x00\x8a\xe7\xf9\x3f\x47\x22\x91\x79\x49\x92\x36\x4a\x2d\ 114 | \xdb\x89\xe7\x79\x1c\x3b\x76\x0c\xc7\x8f\x1f\xdf\x31\x48\x0a\xa0\ 115 | \x75\xdf\x2d\xd3\x00\x00\xc0\x94\x95\x95\xb5\x5f\xbb\x76\xed\x3d\ 116 | \x9a\xa6\x7d\x16\x8b\x05\x16\x8b\x25\x63\x27\x3d\x29\x63\xaf\x6b\ 117 | \x0d\x96\x13\xdf\x5f\xb8\xd6\x75\xc3\x65\xa6\xd8\x66\xb5\xf2\xb8\ 118 | \x70\xf6\x10\x5a\xfd\x3b\x03\x00\x1e\xaf\x89\xd4\x71\x61\x71\x71\ 119 | \x11\xaa\xaa\x22\x53\xfd\x89\x67\x14\xfc\xfc\x48\x1f\x8c\xef\x32\ 120 | \x2e\x9b\xe5\x28\xae\xfc\xed\x56\x4e\x55\xc3\x7c\x02\x00\x8f\x21\ 121 | \xea\xea\xea\x54\x87\xc3\xa1\x4c\x4c\x4c\x60\x66\x66\x66\xe3\x30\ 122 | \xb7\xad\x08\x58\x81\x8d\x93\xf3\x07\x87\x00\xd2\x80\x2b\x1d\xfd\ 123 | \x59\x81\x08\x82\x80\x0b\x67\x0e\xa0\x75\xdf\x2d\x30\x64\xe7\x00\ 124 | \xc0\xd7\xd9\xa9\x99\xa2\x28\x0b\x45\x51\x60\x18\x26\xe3\xda\xa8\ 125 | \xdb\x3d\x6f\xe7\xd9\xe4\x27\x00\x1c\xc5\x6c\x0c\x6d\x07\xee\x00\ 126 | \x46\xe6\x19\x29\x2e\x16\x70\xfe\x47\x01\xbc\xed\xef\xcf\x1b\xc0\ 127 | \x06\x84\xd7\xeb\x0d\xe7\xd2\xc9\xe8\xf5\xaf\x41\xb3\xe8\xa9\xaf\ 128 | \x3d\x02\x1b\x47\xdb\xc1\xbb\x00\xd2\x83\xa4\x00\x5a\xfd\xfd\x79\ 129 | \x79\x84\x9e\x54\xde\x0a\x05\x02\x1b\xc7\x85\xc0\x5d\xb4\x9e\x3a\ 130 | \xba\x29\x6b\x15\x12\x00\xc8\x73\xc9\xc6\xca\x6c\x06\x49\x01\x9c\ 131 | \xdb\x57\x18\x00\xa0\x00\xc5\xb3\x14\x08\x48\x03\xfe\xfe\xf1\x17\ 132 | \x38\xf7\xd6\x2b\x68\xf5\xf7\x81\x21\x5a\xbe\x43\x6d\xa8\x20\xd5\ 133 | \x0e\x2b\x13\x47\xdb\xc1\x21\xb8\xcb\x5e\xc3\x49\x6f\x3f\x18\xaa\ 134 | \x70\x00\x40\x01\xcb\x98\x02\x23\xe1\x87\xbe\xf4\x05\x83\x7c\xea\ 135 | \x5b\xf1\xcd\xee\xff\x16\x42\x53\x19\x68\x4a\xe6\x23\x10\x60\xf6\ 136 | \x71\x2a\x6d\x04\x74\x02\xac\x8e\x00\xda\xe6\x5a\x6b\x3e\x14\x57\ 137 | \x2d\x58\x95\xb9\xac\x6c\xcd\x41\x54\x9d\x04\x24\x19\x0b\x0b\x2b\ 138 | \x10\x8c\x49\x08\x45\x8a\x29\x37\xe9\x24\x25\x38\x2c\x4a\xc5\x88\ 139 | \xe9\x02\x04\x41\xc8\x68\x6f\x72\x26\xdc\x0a\x80\x8e\x60\xbc\xfe\ 140 | \x34\x89\x13\x27\x47\x22\xa6\xdc\xa4\x53\x34\x56\x8c\x48\xdc\x8a\ 141 | \x55\x94\xa1\xac\xac\x2c\xa3\xbd\x29\x08\x42\x5e\x95\x00\xbc\x7b\ 142 | \xe3\xc6\x8d\xea\x29\xb1\xfc\x7b\xe1\x70\xb8\x48\x51\xf2\x3b\x1b\ 143 | \x2c\xcb\xc2\xe9\x74\xe2\xc5\x8a\x8a\x8c\xb6\x3b\x4a\xb1\x7e\xbf\ 144 | \xbf\x57\x10\x84\x4a\x86\x61\xdc\xa1\x50\x08\x9a\x96\x9f\xfd\x80\ 145 | \xa6\x69\x94\x97\x97\xc3\xe3\xf1\xc0\xe5\x72\x65\xac\x14\xfc\x17\ 146 | \xb5\xdb\x1e\x00\xac\xe2\x79\x8b\x00\x00\x00\x00\x49\x45\x4e\x44\ 147 | \xae\x42\x60\x82\ 148 | " 149 | 150 | qt_resource_name = b"\ 151 | \x00\x07\ 152 | \x07\x3b\xe0\xb3\ 153 | \x00\x70\ 154 | \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\ 155 | \x00\x24\ 156 | \x05\x65\xde\x02\ 157 | \x00\x53\ 158 | \x00\x70\x00\x61\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x5f\x00\x49\x00\x6e\x00\x73\x00\x70\x00\x69\x00\x72\x00\x65\x00\x5f\x00\x43\ 159 | \x00\x61\x00\x74\x00\x61\x00\x73\x00\x74\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\ 160 | \x00\x64\x00\x65\x00\x72\ 161 | \x00\x08\ 162 | \x0a\x61\x5a\xa7\ 163 | \x00\x69\ 164 | \x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ 165 | " 166 | 167 | qt_resource_struct = b"\ 168 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ 169 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ 170 | \x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ 171 | \x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ 172 | " 173 | 174 | 175 | def qInitResources(): 176 | QtCore.qRegisterResourceData(0x01 , qt_resource_struct , qt_resource_name , qt_resource_data) 177 | 178 | 179 | def qCleanupResources(): 180 | QtCore.qUnregisterResourceData(0x01 , qt_resource_struct , qt_resource_name , qt_resource_data) 181 | 182 | 183 | qInitResources() 184 | -------------------------------------------------------------------------------- /Spanish_Inspire_Catastral_Downloader.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | /*************************************************************************** 5 | Spanish_Inspire_Catastral_Downloader 6 | A QGIS plugin 7 | Spanish Inspire Catastral Downloader 8 | ------------------- 9 | begin : 2017-06-18 10 | git sha : $Format:%H$ 11 | copyright : (C) 2017 by Patricio Soriano :: SIGdeletras.com 12 | email : pasoriano@sigdeletras.com 13 | ***************************************************************************/ 14 | 15 | /*************************************************************************** 16 | * * 17 | * This program is free software; you can redistribute it and/or modify * 18 | * it under the terms of the GNU General Public License as published by * 19 | * the Free Software Foundation; either version 2 of the License, or * 20 | * (at your option) any later version. * 21 | * * 22 | ***************************************************************************/ 23 | """ 24 | 25 | import json 26 | import os 27 | import os.path 28 | import shutil 29 | import socket 30 | import subprocess 31 | import xml.etree.ElementTree as ET 32 | import zipfile 33 | from urllib import parse, request 34 | 35 | # Import the PyQt and QGIS libraries 36 | from qgis.PyQt.QtCore import Qt 37 | 38 | # from PyQt5.QtWidgets import QDialog 39 | # For Debug 40 | try: 41 | from pydevd import * 42 | except ImportError: 43 | None 44 | 45 | from PyQt5 import QtNetwork, uic 46 | from PyQt5.QtCore import * 47 | from PyQt5.QtGui import * 48 | from PyQt5.QtWidgets import * 49 | from qgis.core import Qgis 50 | 51 | QT_VERSION = 5 52 | os.environ['QT_API'] = 'pyqt5' 53 | 54 | from qgis.core import * 55 | from qgis.core import (QgsMessageLog) 56 | 57 | from .Spanish_Inspire_Catastral_Downloader_dialog import \ 58 | Spanish_Inspire_Catastral_DownloaderDialog 59 | 60 | from .Config import _port, _proxy 61 | 62 | CODPROV = '' 63 | CODMUNI = '' 64 | ULR_CATASTRO = 'https://www.catastro.hacienda.gob.es' 65 | 66 | class Spanish_Inspire_Catastral_Downloader: 67 | """QGIS Plugin Implementation.""" 68 | 69 | def __init__(self, iface): 70 | """Constructor. 71 | 72 | :param iface: An interface instance that will be passed to this class 73 | which provides the hook by which you can manipulate the QGIS 74 | application at run time. 75 | :type iface: QgsInterface 76 | """ 77 | # Save reference to the QGIS interface 78 | self.iface = iface 79 | self.msgBar = iface.messageBar() 80 | self.data_dir = '' 81 | 82 | # initialize plugin directory 83 | self.plugin_dir = os.path.dirname(__file__) 84 | # initialize locale 85 | locale = QSettings().value('locale/userLocale')[0:2] 86 | locale_path = os.path.join( 87 | self.plugin_dir, 88 | 'i18n', 89 | 'Spanish_Inspire_Catastral_Downloader_{}.qm'.format(locale)) 90 | 91 | if os.path.exists(locale_path): 92 | self.translator = QTranslator() 93 | self.translator.load(locale_path) 94 | 95 | if qVersion() > '4.3.3': 96 | QCoreApplication.installTranslator(self.translator) 97 | 98 | # Declare instance attributes 99 | self.actions = [] 100 | self.menu = self.tr(u'&Spanish Inspire Catastral Downloader') 101 | self.toolbar = self.iface.addToolBar(u'Spanish_Inspire_Catastral_Downloader') 102 | self.toolbar.setObjectName(u'Spanish_Inspire_Catastral_Downloader') 103 | 104 | socket.setdefaulttimeout(5) 105 | 106 | # noinspection PyMethodMayBeStatic 107 | def tr(self, message): 108 | """Get the translation for a string using Qt translation API. 109 | 110 | We implement this ourselves since we do not inherit QObject. 111 | 112 | :param message: String for translation. 113 | :type message: str, QString 114 | 115 | :returns: Translated version of message. 116 | :rtype: QString 117 | """ 118 | # noinspection PyTypeChecker,PyArgumentList,PyCallByClass 119 | return QCoreApplication.translate('Spanish_Inspire_Catastral_Downloader', message) 120 | 121 | def add_action( 122 | self, 123 | icon_path, 124 | text, 125 | callback, 126 | enabled_flag=True, 127 | add_to_menu=True, 128 | add_to_toolbar=True, 129 | status_tip=None, 130 | whats_this=None, 131 | parent=None): 132 | """Add a toolbar icon to the toolbar. 133 | 134 | :param icon_path: Path to the icon for this action. Can be a resource 135 | path (e.g. ':/plugins/foo/bar.png') or a normal file system path. 136 | :type icon_path: str 137 | 138 | :param text: Text that should be shown in menu items for this action. 139 | :type text: str 140 | 141 | :param callback: Function to be called when the action is triggered. 142 | :type callback: function 143 | 144 | :param enabled_flag: A flag indicating if the action should be enabled 145 | by default. Defaults to True. 146 | :type enabled_flag: bool 147 | 148 | :param add_to_menu: Flag indicating whether the action should also 149 | be added to the menu. Defaults to True. 150 | :type add_to_menu: bool 151 | 152 | :param add_to_toolbar: Flag indicating whether the action should also 153 | be added to the toolbar. Defaults to True. 154 | :type add_to_toolbar: bool 155 | 156 | :param status_tip: Optional text to show in a popup when mouse pointer 157 | hovers over the action. 158 | :type status_tip: str 159 | 160 | :param parent: Parent widget for the new action. Defaults None. 161 | :type parent: QWidget 162 | 163 | :param whats_this: Optional text to show in the status bar when the 164 | mouse pointer hovers over the action. 165 | 166 | :returns: The action that was created. Note that the action is also 167 | added to self.actions list. 168 | :rtype: QAction 169 | """ 170 | 171 | # Create the dialog (after translation) and keep reference 172 | self.dlg = Spanish_Inspire_Catastral_DownloaderDialog() 173 | # self.dlg.setWindowFlags(Qt.WindowSystemMenuHint | Qt.WindowTitleHint) 174 | 175 | icon = QIcon(icon_path) 176 | action = QAction(icon, text, parent) 177 | action.triggered.connect(callback) 178 | action.setEnabled(enabled_flag) 179 | 180 | if status_tip is not None: 181 | action.setStatusTip(status_tip) 182 | 183 | if whats_this is not None: 184 | action.setWhatsThis(whats_this) 185 | 186 | if add_to_toolbar: 187 | self.toolbar.addAction(action) 188 | 189 | if add_to_menu: 190 | self.iface.addPluginToMenu( 191 | self.menu, 192 | action) 193 | 194 | self.actions.append(action) 195 | 196 | return action 197 | 198 | def initGui(self): 199 | """Create the menu entries and toolbar icons inside the QGIS GUI.""" 200 | 201 | icon_path = ':/plugins/Spanish_Inspire_Catastral_Downloader/icon.png' 202 | self.add_action( 203 | icon_path, 204 | text=self.tr(u'&Spanish Inspire Catastral Downloader'), 205 | callback=self.run, 206 | parent=self.iface.mainWindow()) 207 | 208 | self.dlg.pushButton_select_path.clicked.connect(self.select_output_folder) 209 | self.dlg.pushButton_run.clicked.connect(self.download) 210 | self.dlg.pushButton_add_layers.clicked.connect(self.add_layers) 211 | self.dlg.comboBox_province.currentTextChanged.connect(self.on_combobox_changed) 212 | self.dlg.comboBox_province.currentTextChanged.connect(self.on_combobox_changed) 213 | 214 | def unload(self): 215 | """Removes the plugin menu item and icon from QGIS GUI.""" 216 | for action in self.actions: 217 | self.iface.removePluginMenu( 218 | self.tr(u'&Spanish Inspire Catastral Downloader'), 219 | action) 220 | self.iface.removeToolBarIcon(action) 221 | # remove the toolbar 222 | del self.toolbar 223 | 224 | def select_output_folder(self) -> None: 225 | """Select output folder""" 226 | 227 | self.dlg.lineEdit_path.clear() 228 | folder = QFileDialog.getExistingDirectory(self.dlg, "Select folder") 229 | self.dlg.lineEdit_path.setText(folder) 230 | 231 | def check_form(self, option: int) -> None: 232 | """Message for fields without information""" 233 | 234 | messages = { 235 | 1: self.tr('You must complete the data of the province and municipality and indicate the download route.'), 236 | 2: self.tr('You must select at least one cadastral entity to download.') 237 | } 238 | 239 | QgsMessageLog.logMessage(messages[option], 'SICD', 240 | level=Qgis.Warning) 241 | 242 | self.msgBar.pushMessage(messages[option], level=Qgis.Warning, duration=3) 243 | 244 | # Progress Download 245 | def reporthook(self, blocknum, blocksize, totalsize): 246 | readsofar = blocknum * blocksize 247 | if totalsize > 0: 248 | percent = readsofar * 1e2 / totalsize 249 | self.dlg.progressBar.setValue(int(percent)) 250 | 251 | # Set Proxy 252 | def set_proxy(self): 253 | proxy_handler = request.ProxyHandler({ 254 | 'http': '%s:%s' % (_proxy, _port), 255 | 'https': '%s:%s' % (_proxy, _port) 256 | }) 257 | opener = request.build_opener(proxy_handler) 258 | request.install_opener(opener) 259 | return 260 | 261 | def unset_proxy(self): 262 | """ Unset Proxy """ 263 | 264 | proxy_handler = request.ProxyHandler({}) 265 | opener = request.build_opener(proxy_handler) 266 | request.install_opener(opener) 267 | return 268 | 269 | def encode_url(self, url): 270 | """ Encode URL Download """ 271 | 272 | url = parse.urlsplit(url) 273 | url = list(url) 274 | url[2] = parse.quote(url[2]) 275 | encoded_link = parse.urlunsplit(url) 276 | return encoded_link 277 | 278 | def formatFolderName(self, foldername) -> str: 279 | """ """ 280 | foldernameformat = foldername.replace(' ', "_") 281 | return foldernameformat 282 | 283 | def gml2geojson(self, input, output): 284 | """ Convert a GML to a GeoJSON file """ 285 | 286 | try: 287 | connect_command = """ogr2ogr -f GeoJSON {} {} -a_srs EPSG:25830""".format(output, input) 288 | print("\n Executing: ", connect_command) 289 | process = subprocess.Popen(connect_command, shell=True) 290 | process.communicate() 291 | process.wait() 292 | QgsMessageLog.logMessage(f'09.1 Función gml2geojson()', 'SICD', level=Qgis.Info) 293 | QgsMessageLog.logMessage(f'09.2 Input {input}', 'SICD', level=Qgis.Info) 294 | QgsMessageLog.logMessage(f'09.3 GML {input} converted to {output}', 'SICD', level=Qgis.Info) 295 | 296 | except Exception as err: 297 | msg = self.tr("Error converting files to GML") 298 | QgsMessageLog.logMessage(f'{msg}', 'SICD', level=Qgis.Warning) 299 | self.msgBar.pushMessage(f'{msg}', level=Qgis.Warning, duration=3) 300 | raise 301 | return 302 | 303 | def search_url(self, inecode_catastro, tipo, codtipo, wd): 304 | 305 | inecode_catastro = inecode_catastro.split(' - ')[0] 306 | CODPROV = inecode_catastro[0:2] 307 | ATOM = f'{ULR_CATASTRO}/INSPIRE/{tipo}/{CODPROV}/ES.SDGC.{codtipo}.atom_{CODPROV}.xml?tipo={tipo}&wd={wd}' 308 | 309 | req = QtNetwork.QNetworkRequest(QUrl(ATOM)) 310 | self.manager_ATOM.get(req) 311 | 312 | def generate_download_url(self, reply): 313 | 314 | QgsMessageLog.logMessage(f'06.1 Genera url de descarga generate_download_url()', 'SICD', level=Qgis.Info) 315 | 316 | inecode_catastro = self.dlg.comboBox_municipality.currentText().split(' - ')[0] 317 | 318 | er = reply.error() 319 | 320 | if er == QtNetwork.QNetworkReply.NetworkError.NoError: 321 | bytes_string = reply.readAll() 322 | response = str(bytes_string, 'iso-8859-1') 323 | root = ET.fromstring(response) 324 | for entry in root.findall('{http://www.w3.org/2005/Atom}entry'): 325 | try: 326 | url_cadastre = entry.find('{http://www.w3.org/2005/Atom}id').text 327 | QgsMessageLog.logMessage(f'06.2 {url_cadastre}', 'SICD', level=Qgis.Info) 328 | except: 329 | msg = self.tr("The data set was not found.") 330 | self.msgBar.pushMessage(msg, level=Qgis.Info, duration=3) 331 | 332 | if url_cadastre is not None and url_cadastre.endswith('{}.zip'.format(inecode_catastro)): 333 | params = parse.parse_qs(parse.urlparse(reply.request().url().toString()).query) 334 | tipo = params['tipo'][0] 335 | wd = params['wd'][0] 336 | self.create_download_file(inecode_catastro, tipo, url_cadastre, wd) 337 | break 338 | 339 | def create_download_file(self, inecode_catastro, tipo, url, wd): 340 | 341 | QgsMessageLog.logMessage(f'07.1 Función create_download_file', 'SICD', level=Qgis.Info) 342 | QgsMessageLog.logMessage( 343 | f'07.2 Parámetros inecode_catastro {inecode_catastro}, tipo {tipo}, url {url}, wd {wd})', 344 | 'SICD', level=Qgis.Info) 345 | 346 | self.data_dir = os.path.normpath(os.path.join(wd, inecode_catastro)) 347 | 348 | QgsMessageLog.logMessage(f'07.1 {self.data_dir}', 'SICD', level=Qgis.Info) 349 | try: 350 | os.makedirs(self.data_dir) 351 | QgsMessageLog.logMessage( 352 | f'07.3 Creada carpeta en {self.data_dir})', 'SICD', level=Qgis.Success) 353 | except OSError: 354 | pass 355 | 356 | zip_file = os.path.join(self.data_dir, "{}_{}.zip".format(inecode_catastro, tipo)) # poner fecha 357 | 358 | if not os.path.exists(zip_file): 359 | e_url = self.encode_url(url) 360 | try: 361 | request.urlretrieve(e_url, zip_file, self.reporthook) 362 | 363 | QgsMessageLog.logMessage(f"7.4 Ficheros descargados correctamente en {self.data_dir}", 'SICD', 364 | level=Qgis.Success) 365 | txt = self.tr('Files downloaded correctly in') 366 | msg = f'😎 {txt} {self.data_dir}' 367 | self.msgBar.pushMessage(msg, level=Qgis.Success, duration=5) 368 | self.unzip_files(self.data_dir) 369 | 370 | except: 371 | shutil.rmtree(self.data_dir) 372 | raise 373 | else: 374 | QApplication.restoreOverrideCursor() 375 | txt1 = self.tr('The data set already exists in the folder') 376 | txt2 = self.tr('You must delete them first if you want to download them to the same location') 377 | msg = f'{txt1} {self.data_dir}. {txt2} ' 378 | 379 | QgsMessageLog.logMessage(msg, 'SICD', level=Qgis.Critical) 380 | 381 | self.msgBar.pushMessage(msg, level=Qgis.Critical) 382 | pass 383 | 384 | def unzip_files(self, wd): 385 | 386 | try: 387 | if os.path.isdir(wd): 388 | for zipfilecatastro in os.listdir(wd): 389 | if zipfilecatastro.endswith('.zip'): 390 | with zipfile.ZipFile(os.path.join(wd, zipfilecatastro), "r") as z: 391 | z.extractall(wd) 392 | QgsMessageLog.logMessage(f'08.1 Zip descomprimidos', 'SICD', level=Qgis.Info) 393 | 394 | self.dlg.pushButton_add_layers.setEnabled(1) 395 | else: 396 | msg = self.tr("Select at least one data set to download") 397 | self.msgBar.pushMessage(msg, level=Qgis.Critical) 398 | return 399 | except: 400 | 401 | self.msgBar.pushMessage(self.tr("An error occurred while decompressing the file."), level=Qgis.Warning, duration=3) 402 | 403 | QApplication.restoreOverrideCursor() 404 | 405 | self.dlg.progressBar.setValue(100) # No llega al 100% aunque lo descargue,es random 406 | 407 | QApplication.restoreOverrideCursor() 408 | 409 | def add_layers(self): 410 | 411 | inecode_catastro = self.dlg.comboBox_municipality.currentText().split(' - ') 412 | zippath = self.dlg.lineEdit_path.text() 413 | wd = os.path.join(zippath, inecode_catastro[0]) 414 | 415 | group_name = self.dlg.comboBox_municipality.currentText() 416 | project = QgsProject.instance() 417 | tree_root = project.layerTreeRoot() 418 | layers_group = tree_root.addGroup(group_name) 419 | 420 | for gmlfile in os.listdir(wd): 421 | if gmlfile.endswith('.gml'): 422 | layer_path = os.path.join(wd, gmlfile) 423 | file_name = os.path.splitext(gmlfile)[0] 424 | QgsMessageLog.logMessage(layer_path, 'SICD', level=Qgis.Info) 425 | gml_layer = QgsVectorLayer(layer_path, file_name, "ogr") 426 | project.addMapLayer(gml_layer, False) 427 | layers_group.addLayer(gml_layer) 428 | 429 | QgsMessageLog.logMessage("10. Capas cargadas", 'SICD', level=Qgis.Info) 430 | 431 | def run(self): 432 | """Run method that performs all the real work""" 433 | 434 | QgsMessageLog.logMessage(f"0. URL de Catastro {ULR_CATASTRO}", 'SICD', level=Qgis.Info) 435 | 436 | self.dlg.lineEdit_path.clear() 437 | self.dlg.comboBox_province.clear() 438 | self.dlg.comboBox_municipality.clear() 439 | 440 | self.obtener_provincias() 441 | 442 | self.dlg.checkBox_parcels.setChecked(0) 443 | self.dlg.checkBox_buildings.setChecked(0) 444 | self.dlg.checkBox_addresses.setChecked(0) 445 | 446 | # self.dlg.checkBox_load_layers.setChecked(0) 447 | 448 | self.dlg.pushButton_add_layers.setEnabled(0) 449 | 450 | # show the dialog 451 | self.dlg.progressBar.setValue(0) 452 | self.dlg.setWindowIcon(QIcon(':/plugins/Spanish_Inspire_Catastral_Downloader/icon.png')); 453 | self.dlg.show() 454 | 455 | # Run the dialog event loop 456 | result = self.dlg.exec_() 457 | 458 | # See if OK was pressed 459 | if result: pass 460 | 461 | def on_combobox_changed(self): 462 | self.dlg.lineEdit_path.clear() 463 | self.dlg.checkBox_parcels.setChecked(0) 464 | self.dlg.checkBox_buildings.setChecked(0) 465 | self.dlg.checkBox_addresses.setChecked(0) 466 | self.dlg.pushButton_add_layers.setEnabled(0) 467 | 468 | def obtener_provincias(self): 469 | 470 | QgsMessageLog.logMessage("01.1 Obtenindo provincias (obtener_provincias)", 'SICD', level=Qgis.Info) 471 | 472 | self.manager_provincias = QtNetwork.QNetworkAccessManager() 473 | self.manager_provincias.finished.connect(self.rellenar_provincias) 474 | 475 | url = 'http://ovc.catastro.meh.es/OVCServWeb/OVCWcfCallejero/COVCCallejero.svc/json/ObtenerProvincias' 476 | 477 | QgsMessageLog.logMessage(f'01.2 URL JSON Provincias de Catastro {url}', 'SICD', level=Qgis.Info) 478 | 479 | req = QtNetwork.QNetworkRequest(QUrl(url)) 480 | self.manager_provincias.get(req) 481 | 482 | def rellenar_provincias(self, reply): 483 | 484 | QgsMessageLog.logMessage("02. Rellenando provincias (rellenar_provincias)", 'SICD', level=Qgis.Info) 485 | er = reply.error() 486 | if er == QtNetwork.QNetworkReply.NetworkError.NoError: 487 | bytes_string = reply.readAll() 488 | response = str(bytes_string, 'utf-8') 489 | response_json = json.loads(response) 490 | provincias = response_json['consulta_provincieroResult']['provinciero']['prov'] 491 | 492 | list_provincias = [self.tr('Select a province...')] 493 | 494 | for provincia in provincias: 495 | list_provincias.append('{} - {}'.format(provincia['cpine'], provincia['np'])) 496 | 497 | self.dlg.comboBox_province.addItems(list_provincias) 498 | self.dlg.comboBox_province.currentIndexChanged.connect(self.obtener_municipos) 499 | 500 | def obtener_municipos(self): 501 | 502 | try: 503 | self.manager_municipios = QtNetwork.QNetworkAccessManager() 504 | self.manager_municipios.finished.connect(self.rellenar_municipios) 505 | provincia_cod = self.dlg.comboBox_province.currentText() 506 | msg = f'03.1 Obteniendo municipios (obtener_municipios) de la provincia {provincia_cod}' 507 | QgsMessageLog.logMessage(msg, 'SICD', level=Qgis.Info) 508 | provincia = provincia_cod.split(' - ')[0] 509 | 510 | url = 'http://ovc.catastro.meh.es/OVCServWeb/OVCWcfCallejero/COVCCallejeroCodigos.svc/json/ObtenerMunicipiosCodigos?CodigoProvincia=' + str( 511 | provincia) 512 | 513 | QgsMessageLog.logMessage(f'03.2 URL JSON Municipios de Catastro de la {provincia_cod}: {url}', 'SICD', 514 | level=Qgis.Info) 515 | 516 | req = QtNetwork.QNetworkRequest(QUrl(url)) 517 | self.manager_municipios.get(req) 518 | except Exception as e: 519 | print(e) 520 | 521 | def rellenar_municipios(self, reply): 522 | 523 | er = reply.error() 524 | if er == QtNetwork.QNetworkReply.NetworkError.NoError: 525 | 526 | bytes_string = reply.readAll() 527 | response = str(bytes_string, 'utf-8') 528 | response_json = json.loads(response) 529 | list_municipios = [] 530 | 531 | try: 532 | municipios = response_json['consulta_municipieroResult']['municipiero']['muni'] 533 | QgsMessageLog.logMessage("04. Rellenando municipios (rellenar_municipios)", 'SICD', level=Qgis.Info) 534 | for municipio in municipios: 535 | codigo_provincia = str(municipio['locat']['cd']).zfill(2) 536 | codigo_municipio = str(municipio['locat']['cmc']).zfill(3) 537 | codigo = codigo_provincia + codigo_municipio 538 | list_municipios.append(codigo + ' - ' + municipio['nm']) 539 | except: 540 | pass 541 | 542 | self.dlg.comboBox_municipality.clear() 543 | self.dlg.comboBox_municipality.addItems(list_municipios) 544 | 545 | def download(self): 546 | """Download data funtion""" 547 | 548 | if self.dlg.comboBox_municipality.currentText() == '' or self.dlg.lineEdit_path.text() == '': 549 | self.check_form(1) 550 | elif not ( 551 | self.dlg.checkBox_parcels.isChecked() or self.dlg.checkBox_buildings.isChecked() or self.dlg.checkBox_addresses.isChecked()): 552 | self.check_form(2) 553 | 554 | else: 555 | QgsMessageLog.logMessage("05 Inicio de descarga", 'SICD', level=Qgis.Info) 556 | try: 557 | QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) 558 | inecode_catastro = self.dlg.comboBox_municipality.currentText() 559 | 560 | zippath = self.dlg.lineEdit_path.text() 561 | # wd = os.path.join(zippath , inecode_catastro.replace(' ', "_")) 562 | # wd = os.path.join(zippath, CODMUNI) 563 | 564 | QgsMessageLog.logMessage(f'05.1 Genera variables zippath {zippath}', 'SICD', level=Qgis.Info) 565 | 566 | proxy_support = request.ProxyHandler({}) 567 | opener = request.build_opener(proxy_support) 568 | request.install_opener(opener) 569 | 570 | # Estabelcemos un proxy si lo ha definido el usuario 571 | try: 572 | if (_proxy is not None and _proxy != "") and (_port is not None and _port != ""): 573 | self.set_proxy() 574 | else: 575 | self.unset_proxy() 576 | except Exception as e: 577 | QApplication.restoreOverrideCursor() 578 | txt = self.tr('Error setting proxy') 579 | msg = f"{txt} : {str(e)}" 580 | self.msgBar.pushMessage(msg, level=Qgis.Warning, duration=3) 581 | raise 582 | 583 | self.manager_ATOM = QtNetwork.QNetworkAccessManager() 584 | 585 | self.manager_ATOM.finished.connect(self.generate_download_url) 586 | 587 | if self.dlg.checkBox_parcels.isChecked(): 588 | self.search_url(inecode_catastro, 'CadastralParcels', 'CP', zippath) 589 | 590 | if self.dlg.checkBox_buildings.isChecked(): 591 | self.search_url(inecode_catastro, 'Buildings', 'BU', zippath) 592 | 593 | if self.dlg.checkBox_addresses.isChecked(): 594 | self.search_url(inecode_catastro, 'Addresses', 'AD', zippath) 595 | 596 | except Exception as e: 597 | QApplication.restoreOverrideCursor() 598 | self.dlg.pushButton_add_layers.setEnabled(0) 599 | self.msgBar.pushMessage(self.tr("Failed!") + str(e), level=Qgis.Warning, duration=3) 600 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------