Revork des code et leur rangement
@ -1 +1,4 @@
|
|||||||
# CenRa_AutoMap
|
# CenRa_AutoMap
|
||||||
|
---
|
||||||
|
Outil de création de mise en page,
|
||||||
|
Permet de préprogramé des mise en page pour les mêtre à disposition des collégue.
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
name=CenRA_COPIE
|
name=CenRA_COPIE
|
||||||
qgisMinimumVersion=3.0
|
qgisMinimumVersion=3.0
|
||||||
description=Permet la copie d'une table dans une base PostGis
|
description=Permet la copie d'une table dans une base PostGis
|
||||||
version=2
|
version=2.0
|
||||||
author=Conservatoire d'Espaces Naturels de Rhône-Alpes
|
author=Conservatoire d'Espaces Naturels de Rhône-Alpes
|
||||||
email=si_besoin@cen-rhonealpes.fr
|
email=si_besoin@cen-rhonealpes.fr
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ repository=https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS
|
|||||||
homepage=https://plateformesig.cenra-outils.org/
|
homepage=https://plateformesig.cenra-outils.org/
|
||||||
|
|
||||||
category=Plugins
|
category=Plugins
|
||||||
icon=cenra.png
|
icon=icon.png
|
||||||
# experimental flag
|
# experimental flag
|
||||||
experimental=True
|
experimental=True
|
||||||
|
|
||||||
|
|||||||
100
CenRa_FLUX/CenRa_Flux.py
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
__copyright__ = "Copyright 2021, 3Liz"
|
||||||
|
__license__ = "GPL version 3"
|
||||||
|
__email__ = "info@3liz.org"
|
||||||
|
|
||||||
|
|
||||||
|
from qgis.core import QgsApplication
|
||||||
|
from qgis.PyQt.QtCore import QCoreApplication, Qt, QTranslator, QUrl
|
||||||
|
from qgis.PyQt.QtGui import QDesktopServices, QIcon
|
||||||
|
from qgis.PyQt.QtWidgets import QAction, QMessageBox
|
||||||
|
from qgis.utils import iface
|
||||||
|
import qgis
|
||||||
|
|
||||||
|
|
||||||
|
#include <QSettings>
|
||||||
|
|
||||||
|
import os
|
||||||
|
from .tools.resources import (
|
||||||
|
plugin_path,
|
||||||
|
resources_path,
|
||||||
|
maj_verif,
|
||||||
|
)
|
||||||
|
from .flux_editor import Flux_Editor
|
||||||
|
from .about_form import FluxAboutDialog
|
||||||
|
|
||||||
|
from PyQt5.QtCore import *
|
||||||
|
|
||||||
|
class PgFlux:
|
||||||
|
def __init__(self):
|
||||||
|
""" Constructor. """
|
||||||
|
self.action_editor = None
|
||||||
|
self.issues = None
|
||||||
|
self.provider = None
|
||||||
|
self.locator_filter = None
|
||||||
|
self.dock_action = None
|
||||||
|
self.help_action = None
|
||||||
|
plugin_dir = os.path.dirname(__file__)
|
||||||
|
end_find = plugin_dir.rfind('\\')+1
|
||||||
|
global NAME
|
||||||
|
NAME = plugin_dir[end_find:]
|
||||||
|
maj_verif(NAME)
|
||||||
|
|
||||||
|
# Display About window on first use
|
||||||
|
version = qgis.utils.pluginMetadata('CenRa_Flux','version')
|
||||||
|
s = QSettings()
|
||||||
|
versionUse = s.value("flux/version", 1, type=str)
|
||||||
|
if str(versionUse) != str(version) :
|
||||||
|
s.setValue("flux/version", str(version))
|
||||||
|
print(versionUse,version)
|
||||||
|
self.open_about_dialog()
|
||||||
|
|
||||||
|
def initGui(self):
|
||||||
|
""" Build the plugin GUI. """
|
||||||
|
|
||||||
|
self.toolBar = iface.addToolBar("CenRa_Flux")
|
||||||
|
self.toolBar.setObjectName("CenRa_Flux")
|
||||||
|
|
||||||
|
icon = QIcon(resources_path('icons', 'icon.png'))
|
||||||
|
|
||||||
|
# Open the online help
|
||||||
|
self.help_action = QAction(icon, "CenRa_Flux", iface.mainWindow())
|
||||||
|
iface.pluginHelpMenu().addAction(self.help_action)
|
||||||
|
self.help_action.triggered.connect(self.open_help)
|
||||||
|
if not self.action_editor:
|
||||||
|
self.action_editor = Flux_Editor()
|
||||||
|
|
||||||
|
self.flux_editor = QAction(icon, 'SigCEN',None)
|
||||||
|
self.toolBar.addAction(self.flux_editor)
|
||||||
|
self.flux_editor.triggered.connect(self.open_editor)
|
||||||
|
|
||||||
|
def open_about_dialog(self):
|
||||||
|
"""
|
||||||
|
About dialog
|
||||||
|
"""
|
||||||
|
dialog = CopieAboutDialog(iface)
|
||||||
|
dialog.exec_()
|
||||||
|
def open_help():
|
||||||
|
""" Open the online help. """
|
||||||
|
QDesktopServices.openUrl(QUrl('https://plateformesig.cenra-outils.org/'))
|
||||||
|
|
||||||
|
def open_editor(self):
|
||||||
|
self.action_editor.show()
|
||||||
|
self.action_editor.raise_()
|
||||||
|
|
||||||
|
def unload(self):
|
||||||
|
""" Unload the plugin. """
|
||||||
|
if self.action_editor:
|
||||||
|
iface.removePluginMenu('CenRa_Flux',self.flux_editor)
|
||||||
|
|
||||||
|
|
||||||
|
if self.provider:
|
||||||
|
QgsApplication.processingRegistry().removeProvider(self.provider)
|
||||||
|
del self.provider
|
||||||
|
|
||||||
|
if self.locator_filter:
|
||||||
|
iface.deregisterLocatorFilter(self.locator_filter)
|
||||||
|
del self.locator_filter
|
||||||
|
|
||||||
|
if self.help_action:
|
||||||
|
iface.pluginHelpMenu().removeAction(self.help_action)
|
||||||
|
del self.help_action
|
||||||
@ -1,938 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
/***************************************************************************
|
|
||||||
FluxCEN
|
|
||||||
A QGIS plugin
|
|
||||||
Centralisation des flux WFS/WMS utilisés au CEN NA
|
|
||||||
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
|
|
||||||
-------------------
|
|
||||||
begin : 2022-03-23
|
|
||||||
git sha : $Format:%H$
|
|
||||||
copyright : (C) 2022 by Romain MONTILLET
|
|
||||||
email : r.montillet@cen-na.org
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
/***************************************************************************
|
|
||||||
* *
|
|
||||||
* This program is free software; you can redistribute it and/or modify *
|
|
||||||
* it under the terms of the GNU General Public License as published by *
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or *
|
|
||||||
* (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
***************************************************************************/
|
|
||||||
"""
|
|
||||||
from qgis.PyQt.QtCore import QSettings, QTranslator, QCoreApplication, Qt, QUrl
|
|
||||||
from qgis.PyQt.QtGui import *
|
|
||||||
from qgis.PyQt.QtWidgets import *
|
|
||||||
from PyQt5 import *
|
|
||||||
|
|
||||||
# Initialize Qt resources from file resources.py
|
|
||||||
from .resources import *
|
|
||||||
# Import the code for the dialog
|
|
||||||
from .FluxCEN_dialog import FluxCENDialog
|
|
||||||
import os.path, os, shutil
|
|
||||||
from qgis.core import *
|
|
||||||
from qgis.gui import *
|
|
||||||
from qgis.utils import *
|
|
||||||
from .forms.about_form import FluxAboutDialog
|
|
||||||
import qgis
|
|
||||||
import processing
|
|
||||||
import psycopg2
|
|
||||||
import psycopg2.extras
|
|
||||||
from PyQt5.QtXml import QDomDocument
|
|
||||||
import csv
|
|
||||||
import os
|
|
||||||
import io
|
|
||||||
import re
|
|
||||||
import random
|
|
||||||
# Deal with SSL
|
|
||||||
import ssl
|
|
||||||
import urllib
|
|
||||||
from urllib import request, parse
|
|
||||||
import socket
|
|
||||||
import json
|
|
||||||
import requests
|
|
||||||
import base64
|
|
||||||
|
|
||||||
ssl._create_default_https_context = ssl._create_unverified_context
|
|
||||||
from PyQt5 import QtGui
|
|
||||||
from .tools.resources import maj_verif
|
|
||||||
from .tools.PythonSQL import *
|
|
||||||
first_conn = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbname+" user=first_cnx password=" + password)
|
|
||||||
first_cur = first_conn.cursor(cursor_factory = psycopg2.extras.DictCursor)
|
|
||||||
first_cur.execute("SELECT mdp_w, login_w FROM pg_catalog.pg_user t1, admin_sig.vm_users_sig t2 WHERE t2.oid = t1.usesysid AND (login_w = '" + os_user + "' OR login_w = '" + os_user + "')")
|
|
||||||
res_ident = first_cur.fetchone()
|
|
||||||
mdp = base64.b64decode(str(res_ident[0])).decode('utf-8')
|
|
||||||
user = res_ident[1]
|
|
||||||
#con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbname+" user=" + user + " password=" + mdp)
|
|
||||||
#cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor)
|
|
||||||
#from .HubToTea import gitea
|
|
||||||
#gitea()
|
|
||||||
first_conn.close()
|
|
||||||
|
|
||||||
|
|
||||||
'''
|
|
||||||
# Vérifier la connexion à internet
|
|
||||||
try:
|
|
||||||
# Vérifier si l'utilisateur est connecté à internet en ouvrant une connexion avec un site web
|
|
||||||
host = socket.gethostbyname("www.google.com")
|
|
||||||
s = socket.create_connection((host, 80), 2)
|
|
||||||
s.close()
|
|
||||||
except socket.error:
|
|
||||||
# Afficher un message si l'utilisateur n'est pas connecté à internet
|
|
||||||
QMessageBox.warning(None, 'Avertissement',
|
|
||||||
'Vous n\'êtes actuellement pas connecté à internet. Veuillez vous connecter pour pouvoir utiliser FluxCEN !')
|
|
||||||
'''
|
|
||||||
|
|
||||||
class Flux:
|
|
||||||
def __init__(self, t, c, nc, l, u, p):
|
|
||||||
self.type = t
|
|
||||||
self.category = c
|
|
||||||
self.nom_commercial = nc
|
|
||||||
self.layer = l
|
|
||||||
self.url = u
|
|
||||||
self.parameters = p
|
|
||||||
maj_verif('CenRa_FLUX')
|
|
||||||
|
|
||||||
|
|
||||||
class Popup(QWidget):
|
|
||||||
def __init__(self, parent=None):
|
|
||||||
super(Popup, self).__init__(parent)
|
|
||||||
|
|
||||||
self.plugin_dir = os.path.dirname(__file__)
|
|
||||||
|
|
||||||
self.text_edit = QTextBrowser()
|
|
||||||
fp = urllib.request.urlopen("https://raw.githubusercontent.com/CEN-Nouvelle-Aquitaine/fluxcen/main/info_changelog.html")
|
|
||||||
mybytes = fp.read()
|
|
||||||
html_changelog = mybytes.decode("utf8")
|
|
||||||
fp.close()
|
|
||||||
|
|
||||||
self.text_edit.setHtml(html_changelog)
|
|
||||||
self.text_edit.setFont(QtGui.QFont("Calibri",weight=QtGui.QFont.Bold))
|
|
||||||
self.text_edit.anchorClicked.connect(QtGui.QDesktopServices.openUrl)
|
|
||||||
self.text_edit.setOpenLinks(False)
|
|
||||||
|
|
||||||
self.text_edit.setWindowTitle("Nouveautés")
|
|
||||||
self.text_edit.setMinimumSize(600,450)
|
|
||||||
|
|
||||||
class FluxCEN:
|
|
||||||
"""QGIS Plugin Implementation."""
|
|
||||||
|
|
||||||
def __init__(self, iface):
|
|
||||||
"""Constructor.
|
|
||||||
|
|
||||||
:param iface: An interface instance that will be passed to this class
|
|
||||||
which provides the hook by which you can manipulate the QGIS
|
|
||||||
application at run time.
|
|
||||||
:type iface: QgsInterface
|
|
||||||
"""
|
|
||||||
# Save reference to the QGIS interface
|
|
||||||
self.iface = iface
|
|
||||||
# initialize plugin directory
|
|
||||||
self.plugin_dir = os.path.dirname(__file__)
|
|
||||||
# initialize locale
|
|
||||||
#print(QSettings().value('locale/userLocale'))
|
|
||||||
locale = QSettings().value('locale/userLocale')[0:2]
|
|
||||||
locale_path = os.path.join(
|
|
||||||
self.plugin_dir,
|
|
||||||
'i18n',
|
|
||||||
'FluxCEN_{}.qm'.format(locale))
|
|
||||||
version = qgis.utils.pluginMetadata('CenRa_FLUX','version')
|
|
||||||
# Display About window on first use
|
|
||||||
s = QSettings()
|
|
||||||
versionUse = s.value("flux/version", 1, type=str)
|
|
||||||
if str(versionUse) != str(version) :
|
|
||||||
s.setValue("flux/version", str(version))
|
|
||||||
self.open_about_dialog()
|
|
||||||
|
|
||||||
if os.path.exists(locale_path):
|
|
||||||
self.translator = QTranslator()
|
|
||||||
self.translator.load(locale_path)
|
|
||||||
QCoreApplication.installTranslator(self.translator)
|
|
||||||
|
|
||||||
# Declare instance attributes
|
|
||||||
self.actions = []
|
|
||||||
self.menu = self.tr(u'&FluxCEN')
|
|
||||||
self.dlg = FluxCENDialog()
|
|
||||||
self.plugin_path = os.path.dirname(__file__)
|
|
||||||
|
|
||||||
# Check if plugin was started the first time in current QGIS session
|
|
||||||
# Must be set in initGui() to survive plugin reloads
|
|
||||||
self.first_start = None
|
|
||||||
|
|
||||||
self.dlg.tableWidget.setSelectionBehavior(QTableWidget.SelectRows)
|
|
||||||
self.dlg.tableWidget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers)
|
|
||||||
|
|
||||||
self.dlg.comboBox_2.addItem("SIG")
|
|
||||||
self.dlg.comboBox_2.addItem('REF')
|
|
||||||
# self.dlg.comboBox.addItem('07')
|
|
||||||
# self.dlg.comboBox.addItem('26')
|
|
||||||
# self.dlg.comboBox.addItem('42')
|
|
||||||
# self.dlg.comboBox.addItem('69')
|
|
||||||
# self.dlg.comboBox.addItem('form')
|
|
||||||
|
|
||||||
self.dlg.comboBox.currentIndexChanged.connect(self.initialisation_flux)
|
|
||||||
self.dlg.commandLinkButton.clicked.connect(self.selection_flux)
|
|
||||||
self.dlg.tableWidget.itemDoubleClicked.connect(self.selection_flux)
|
|
||||||
self.dlg.pushButton_2.clicked.connect(self.limite_flux)
|
|
||||||
self.dlg.commandLinkButton_2.clicked.connect(self.suppression_flux)
|
|
||||||
self.dlg.tableWidget_2.itemDoubleClicked.connect(self.suppression_flux)
|
|
||||||
self.dlg.comboBox_2.currentIndexChanged.connect(self.bd_source)
|
|
||||||
#self.dlg.commandLinkButton_3.clicked.connect(self.option_OSM)
|
|
||||||
#self.dlg.commandLinkButton_4.clicked.connect(self.option_google_maps)
|
|
||||||
|
|
||||||
#self.dlg.commandLinkButton_5.clicked.connect(self.popup)
|
|
||||||
# iface.mapCanvas().extentsChanged.connect(self.test5)
|
|
||||||
|
|
||||||
# url_open = urllib.request.urlopen("https://raw.githubusercontent.com/CEN-Rhone-Alpes/Plugin_QGIS/main/flux.csv")
|
|
||||||
# colonnes_flux = csv.DictReader(io.TextIOWrapper(url_open, encoding='utf8'), delimiter=';')
|
|
||||||
|
|
||||||
#mots_cles = [row["categorie"] for row in colonnes_flux if row["categorie"]]
|
|
||||||
#categories = list(set(mots_cles))
|
|
||||||
#categories.sort()
|
|
||||||
|
|
||||||
#self.dlg.comboBox.addItems(categories)
|
|
||||||
layout = QVBoxLayout()
|
|
||||||
self.dlg.lineEdit.textChanged.connect(self.filtre_dynamique)
|
|
||||||
layout.addWidget(self.dlg.lineEdit)
|
|
||||||
self.dlg.lineEdit.mousePressEvent = self._mousePressEvent
|
|
||||||
|
|
||||||
metadonnees_plugin = open(self.plugin_path + '/metadata.txt')
|
|
||||||
infos_metadonnees = metadonnees_plugin.readlines()
|
|
||||||
|
|
||||||
# derniere_version = urllib.request.urlopen("https://sig.dsi-cen.org/qgis/downloads/last_version_fluxcen.txt")
|
|
||||||
# num_last_version = derniere_version.readlines()[0].decode("utf-8")
|
|
||||||
|
|
||||||
# Connect the itemClicked signal to the open_url function
|
|
||||||
#self.dlg.tableWidget.itemClicked.connect(self.open_url)
|
|
||||||
|
|
||||||
# version_utilisateur = infos_metadonnees[8].splitlines()
|
|
||||||
|
|
||||||
# if infos_metadonnees[8].splitlines() == num_last_version.splitlines():
|
|
||||||
# iface.messageBar().pushMessage("Plugin à jour", "Votre version de FluxCEN %s est à jour !" %version_utilisateur, level=Qgis.Success, duration=5)
|
|
||||||
# else:
|
|
||||||
# iface.messageBar().pushMessage("Information :", "Une nouvelle version de FluxCEN est disponible, veuillez mettre à jour le plugin !", level=Qgis.Info, duration=120)
|
|
||||||
|
|
||||||
def open_about_dialog(self):
|
|
||||||
dialog = FluxAboutDialog(self.iface)
|
|
||||||
dialog.exec_()
|
|
||||||
|
|
||||||
def _mousePressEvent(self, event):
|
|
||||||
self.dlg.lineEdit.setText("")
|
|
||||||
self.dlg.lineEdit.mousePressEvent = None
|
|
||||||
|
|
||||||
# noinspection PyMethodMayBeStatic
|
|
||||||
def tr(self, message):
|
|
||||||
"""Get the translation for a string using Qt translation API.
|
|
||||||
|
|
||||||
We implement this ourselves since we do not inherit QObject.
|
|
||||||
|
|
||||||
:param message: String for translation.
|
|
||||||
:type message: str, QString
|
|
||||||
|
|
||||||
:returns: Translated version of message.
|
|
||||||
:rtype: QString
|
|
||||||
"""
|
|
||||||
# noinspection PyTypeChecker,PyArgumentList,PyCallByClass
|
|
||||||
return QCoreApplication.translate('FluxCEN', message)
|
|
||||||
|
|
||||||
|
|
||||||
def add_action(
|
|
||||||
self,
|
|
||||||
icon_path,
|
|
||||||
text,
|
|
||||||
callback,
|
|
||||||
dbtype=None,
|
|
||||||
enabled_flag=True,
|
|
||||||
add_to_menu=True,
|
|
||||||
add_to_toolbar=True,
|
|
||||||
status_tip=None,
|
|
||||||
whats_this=None,
|
|
||||||
parent=None):
|
|
||||||
"""Add a toolbar icon to the toolbar.
|
|
||||||
|
|
||||||
:param icon_path: Path to the icon for this action. Can be a resource
|
|
||||||
path (e.g. ':/plugins/foo/bar.png') or a normal file system path.
|
|
||||||
:type icon_path: str
|
|
||||||
|
|
||||||
:param text: Text that should be shown in menu items for this action.
|
|
||||||
:type text: str
|
|
||||||
|
|
||||||
:param callback: Function to be called when the action is triggered.
|
|
||||||
:type callback: function
|
|
||||||
|
|
||||||
:param enabled_flag: A flag indicating if the action should be enabled
|
|
||||||
by default. Defaults to True.
|
|
||||||
:type enabled_flag: bool
|
|
||||||
|
|
||||||
:param add_to_menu: Flag indicating whether the action should also
|
|
||||||
be added to the menu. Defaults to True.
|
|
||||||
:type add_to_menu: bool
|
|
||||||
|
|
||||||
:param add_to_toolbar: Flag indicating whether the action should also
|
|
||||||
be added to the toolbar. Defaults to True.
|
|
||||||
:type add_to_toolbar: bool
|
|
||||||
|
|
||||||
:param status_tip: Optional text to show in a popup when mouse pointer
|
|
||||||
hovers over the action.
|
|
||||||
:type status_tip: str
|
|
||||||
|
|
||||||
:param parent: Parent widget for the new action. Defaults None.
|
|
||||||
:type parent: QWidget
|
|
||||||
:param whats_this: Optional text to show in the status bar when the
|
|
||||||
mouse pointer hovers over the action.
|
|
||||||
|
|
||||||
:returns: The action that was created. Note that the action is also
|
|
||||||
added to self.actions list.
|
|
||||||
:rtype: QAction
|
|
||||||
"""
|
|
||||||
|
|
||||||
icon = QIcon(icon_path)
|
|
||||||
action = QAction(icon, text, parent)
|
|
||||||
action.triggered.connect(callback)
|
|
||||||
action.setEnabled(enabled_flag)
|
|
||||||
|
|
||||||
if status_tip is not None:
|
|
||||||
action.setStatusTip(status_tip)
|
|
||||||
|
|
||||||
if whats_this is not None:
|
|
||||||
action.setWhatsThis(whats_this)
|
|
||||||
|
|
||||||
if add_to_toolbar:
|
|
||||||
# Adds plugin icon to Plugins toolbar
|
|
||||||
#self.iface.addToolBarIcon(action)
|
|
||||||
self.toolBar.addAction(action)
|
|
||||||
|
|
||||||
if add_to_menu:
|
|
||||||
self.iface.addPluginToMenu(
|
|
||||||
self.menu,
|
|
||||||
action)
|
|
||||||
|
|
||||||
self.actions.append(action)
|
|
||||||
|
|
||||||
return action
|
|
||||||
|
|
||||||
def initGui(self):
|
|
||||||
self.toolBar = self.iface.addToolBar("FluxCEN")
|
|
||||||
self.toolBar.setObjectName("FluxCEN")
|
|
||||||
"""Create the menu entries and toolbar icons inside the QGIS GUI."""
|
|
||||||
icon_path = ':/plugins/CenRa_FLUX/reficon.png'
|
|
||||||
self.add_action(
|
|
||||||
icon_path,
|
|
||||||
text=self.tr(u'SigCEN'),
|
|
||||||
callback=self.bd_source,
|
|
||||||
dbtype='"+dbname+"',
|
|
||||||
parent=self.iface.mainWindow())
|
|
||||||
'''
|
|
||||||
icon_path_2 = ':/plugins/CenRa_FLUX/reficon.png'
|
|
||||||
self.add_action(
|
|
||||||
icon_path_2,
|
|
||||||
text=self.tr(u'RefCEN'),
|
|
||||||
callback=self.run_ref,
|
|
||||||
dbtype='ref_geo4269',
|
|
||||||
parent=self.iface.mainWindow())
|
|
||||||
'''
|
|
||||||
|
|
||||||
# will be set False in run()
|
|
||||||
self.first_start = False
|
|
||||||
|
|
||||||
def unload(self):
|
|
||||||
"""Removes the plugin menu item and icon from QGIS GUI."""
|
|
||||||
for action in self.actions:
|
|
||||||
self.iface.removePluginMenu(
|
|
||||||
self.tr(u'&SigCEN'),
|
|
||||||
action)
|
|
||||||
self.iface.removeToolBarIcon(action)
|
|
||||||
for action in self.actions:
|
|
||||||
self.iface.removePluginMenu(
|
|
||||||
self.tr(u'&RefCEN'),
|
|
||||||
action)
|
|
||||||
self.iface.removeToolBarIcon(action)
|
|
||||||
|
|
||||||
def bd_source(self):
|
|
||||||
self.dlg.activateWindow()
|
|
||||||
bd_origine=self.dlg.comboBox_2.currentText()
|
|
||||||
if bd_origine == 'REF':
|
|
||||||
self.run_ref()
|
|
||||||
if bd_origine == 'SIG':
|
|
||||||
self.run_sig()
|
|
||||||
|
|
||||||
def run_ref(self):
|
|
||||||
"""Run method that performs all the real work"""
|
|
||||||
while self.dlg.tableWidget_2.rowCount() > 0:
|
|
||||||
self.dlg.tableWidget_2.removeRow(self.dlg.tableWidget_2.rowCount()-1)
|
|
||||||
# print(self.dlg.tableWidget_2.rowCount())
|
|
||||||
global cur,con,dbtype
|
|
||||||
dbtype=refdb
|
|
||||||
con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp)
|
|
||||||
cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor)
|
|
||||||
self.initialisation_flux()
|
|
||||||
self.combobox_custom()
|
|
||||||
# Create the dialog with elements (after translation) and keep reference
|
|
||||||
# Only create GUI ONCE in callback, so that it will only load when the plugin is started
|
|
||||||
if self.first_start == True:
|
|
||||||
self.first_start = False
|
|
||||||
# show the dialog
|
|
||||||
self.dlg.show()
|
|
||||||
# Run the dialog event loop
|
|
||||||
result = self.dlg.exec_()
|
|
||||||
# See if OK was pressed
|
|
||||||
if result:
|
|
||||||
# Do something useful here - delete the line containing pass and
|
|
||||||
# substitute with your code.
|
|
||||||
pass
|
|
||||||
|
|
||||||
def run_sig(self):
|
|
||||||
"""Run method that performs all the real work"""
|
|
||||||
while self.dlg.tableWidget_2.rowCount() > 0:
|
|
||||||
self.dlg.tableWidget_2.removeRow(self.dlg.tableWidget_2.rowCount()-1)
|
|
||||||
global cur,con,dbtype
|
|
||||||
dbtype=sigdb
|
|
||||||
con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp)
|
|
||||||
cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor)
|
|
||||||
self.initialisation_flux()
|
|
||||||
self.combobox_custom()
|
|
||||||
# Create the dialog with elements (after translation) and keep reference
|
|
||||||
# Only create GUI ONCE in callback, so that it will only load when the plugin is started
|
|
||||||
if self.first_start == True:
|
|
||||||
self.first_start = False
|
|
||||||
# show the dialog
|
|
||||||
self.dlg.show()
|
|
||||||
# Run the dialog event loop
|
|
||||||
result = self.dlg.exec_()
|
|
||||||
# See if OK was pressed
|
|
||||||
if result:
|
|
||||||
# Do something useful here - delete the line containing pass and
|
|
||||||
# substitute with your code.
|
|
||||||
pass
|
|
||||||
|
|
||||||
def suppression_flux(self):
|
|
||||||
self.dlg.tableWidget_2.removeRow(self.dlg.tableWidget_2.currentRow())
|
|
||||||
'''
|
|
||||||
def option_OSM(self):
|
|
||||||
tms = 'type=xyz&url=https://tile.openstreetmap.org/{z}/{x}/{y}.png&zmax=19&zmin=0'
|
|
||||||
layer = QgsRasterLayer(tms, 'OSM', 'wms')
|
|
||||||
|
|
||||||
if not QgsProject.instance().mapLayersByName("OSM"):
|
|
||||||
QgsProject.instance().addMapLayer(layer)
|
|
||||||
else:
|
|
||||||
QMessageBox.question(iface.mainWindow(), u"Fond OSM déjà chargé !", "Le fond de carte OSM est déjà chargé", QMessageBox.Ok)
|
|
||||||
|
|
||||||
OSM_layer = QgsProject.instance().mapLayersByName("OSM")[0]
|
|
||||||
|
|
||||||
root = QgsProject.instance().layerTreeRoot()
|
|
||||||
|
|
||||||
# Move Layer
|
|
||||||
OSM_layer = root.findLayer(OSM_layer.id())
|
|
||||||
myClone = OSM_layer.clone()
|
|
||||||
parent = OSM_layer.parent()
|
|
||||||
parent.insertChildNode(-1, myClone)
|
|
||||||
parent.removeChildNode(OSM_layer)
|
|
||||||
|
|
||||||
|
|
||||||
def option_google_maps(self):
|
|
||||||
tms = 'type=xyz&zmin=0&zmax=20&url=https://mt1.google.com/vt/lyrs%3Ds%26x%3D{x}%26y%3D{y}%26z%3D{z}'
|
|
||||||
layer = QgsRasterLayer(tms, 'Google Satelitte', 'wms')
|
|
||||||
|
|
||||||
if not QgsProject.instance().mapLayersByName("Google Satelitte"):
|
|
||||||
QgsProject.instance().addMapLayer(layer)
|
|
||||||
else:
|
|
||||||
QMessageBox.question(iface.mainWindow(), u"Fond Google Sat' déjà chargé !", "Le fond de carte Google Satelitte est déjà chargé", QMessageBox.Ok)
|
|
||||||
|
|
||||||
google_layer = QgsProject.instance().mapLayersByName("Google Satelitte")[0]
|
|
||||||
|
|
||||||
root = QgsProject.instance().layerTreeRoot()
|
|
||||||
|
|
||||||
# Move Layer
|
|
||||||
google_layer = root.findLayer(google_layer.id())
|
|
||||||
myClone = google_layer.clone()
|
|
||||||
parent = google_layer.parent()
|
|
||||||
parent.insertChildNode(-1, myClone)
|
|
||||||
parent.removeChildNode(google_layer)
|
|
||||||
'''
|
|
||||||
|
|
||||||
def open_url(self, item):
|
|
||||||
url = item.data(Qt.UserRole)
|
|
||||||
#if url:
|
|
||||||
# Open the URL, you might use QDesktopServices.openUrl for this in a standalone PyQt application
|
|
||||||
# QDesktopServices.openUrl(QUrl(url))
|
|
||||||
|
|
||||||
def initialisation_flux(self):
|
|
||||||
'''
|
|
||||||
def csv_import(url):
|
|
||||||
url_open = urllib.request.urlopen(url)
|
|
||||||
csvfile = csv.reader(io.TextIOWrapper(url_open, encoding='utf8'), delimiter=';')
|
|
||||||
#on ne lit pas la première ligne correspondant aux noms des colonnes avec next()
|
|
||||||
next(csvfile)
|
|
||||||
return csvfile;
|
|
||||||
|
|
||||||
data = []
|
|
||||||
data2 = []
|
|
||||||
model = QStandardItemModel()
|
|
||||||
|
|
||||||
raw = csv_import(
|
|
||||||
"https://raw.githubusercontent.com/CEN-Rhone-Alpes/Plugin_QGIS/main/flux.csv")
|
|
||||||
for row in raw:
|
|
||||||
data.append(row)
|
|
||||||
data2.append(row)
|
|
||||||
data = [k for k in data if self.dlg.comboBox.currentText() in k]
|
|
||||||
data.sort()
|
|
||||||
data2.sort()
|
|
||||||
items = [
|
|
||||||
QStandardItem(field)
|
|
||||||
for field in row]
|
|
||||||
|
|
||||||
model.appendRow(items)
|
|
||||||
|
|
||||||
row=0
|
|
||||||
data=['a1','a2','a3']
|
|
||||||
data2=[['b1','c1','d1'],['b2','c2','d2'],['b3','c3','d3']]
|
|
||||||
if self.dlg.comboBox.currentText() == 'toutes les catégories':
|
|
||||||
# print(str(data2[0]))
|
|
||||||
# del data2[0]
|
|
||||||
# print(str(data2[0]))
|
|
||||||
nb_row = len(data2)
|
|
||||||
nb_col = len(data2[0])
|
|
||||||
print(data2[row][2])
|
|
||||||
self.dlg.tableWidget.setRowCount(nb_row)
|
|
||||||
self.dlg.tableWidget.setColumnCount(nb_col)
|
|
||||||
for row in range(nb_row):
|
|
||||||
for col in range(nb_col):
|
|
||||||
item = QTableWidgetItem(str(data2[row][col]))
|
|
||||||
# Access the value from the 6th column for the current row (style here)
|
|
||||||
value_from_2nd_column = str(data2[row][2])
|
|
||||||
# Set tooltip for each row
|
|
||||||
tooltip = f"Nom du flux: {value_from_2nd_column}"
|
|
||||||
item.setToolTip(tooltip)
|
|
||||||
|
|
||||||
# Check if the current column is the "Résumé des métadonnées" column
|
|
||||||
if col == 7:
|
|
||||||
# Set icon for the "Résumé des métadonnées" column
|
|
||||||
icon_path = self.plugin_path + '/info_metadata.png' # Replace 'path_to_your_icon.png' with the actual path to your icon
|
|
||||||
icon = QIcon(icon_path)
|
|
||||||
item.setIcon(icon)
|
|
||||||
# Store the URL in the item's data for later retrieval
|
|
||||||
url_from_6th_column = str(data2[row][7]) # Assuming the URL is in the next column
|
|
||||||
item.setData(Qt.UserRole, url_from_6th_column)'''
|
|
||||||
if dbtype == sigdb:
|
|
||||||
if self.dlg.comboBox.currentText() == 'toutes les catégories':
|
|
||||||
custom_list=schemaname_list
|
|
||||||
elif self.dlg.comboBox.currentText() == 'travaux':
|
|
||||||
custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables
|
|
||||||
where schemaname like '"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;"""
|
|
||||||
else:
|
|
||||||
custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables
|
|
||||||
where schemaname like '\_"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '\_"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;"""
|
|
||||||
else:
|
|
||||||
if self.dlg.comboBox.currentText() == 'toutes les catégories':
|
|
||||||
custom_list=schemaname_list_ref
|
|
||||||
else:
|
|
||||||
custom_list="""SELECT schemaname,tablename from pg_catalog.pg_tables
|
|
||||||
where schemaname like '"""+ str(self.dlg.comboBox.currentText()) +"""' order by schemaname,tablename;"""
|
|
||||||
cur.execute(custom_list)
|
|
||||||
list_schema = cur.fetchall()
|
|
||||||
|
|
||||||
self.dlg.tableWidget.setRowCount(len(list_schema))
|
|
||||||
self.dlg.tableWidget.setColumnCount(3)
|
|
||||||
i=0
|
|
||||||
for value in list_schema:
|
|
||||||
if dbtype == sigdb:
|
|
||||||
type_val = str(value[0])[1:3]
|
|
||||||
schema_name=str(value[0])[4:]
|
|
||||||
table_name=str(value[1])
|
|
||||||
else:
|
|
||||||
type_val = ''
|
|
||||||
schema_name=str(value[0])
|
|
||||||
table_name=str(value[1])
|
|
||||||
if type_val == 'fo':
|
|
||||||
type_val=str(value[0])[1:5]
|
|
||||||
schema_name=str(value[0])[6:]
|
|
||||||
table_name=str(value[1])
|
|
||||||
elif type_val == 'ra':
|
|
||||||
type_val='travaux'
|
|
||||||
schema_name=str(value[0])
|
|
||||||
table_name=str(value[1])
|
|
||||||
elif type_val != '00' and type_val != '01' and type_val != '07' and type_val != '26' and type_val != '42' and type_val != '69' and type_val != 'ra':
|
|
||||||
type_val='agregation'
|
|
||||||
schema_name=str(value[0])
|
|
||||||
table_name=str(value[1])
|
|
||||||
|
|
||||||
item = QTableWidgetItem(type_val)
|
|
||||||
self.dlg.tableWidget.setItem(i,0,item)
|
|
||||||
item = QTableWidgetItem(schema_name)
|
|
||||||
self.dlg.tableWidget.setItem(i,1,item)
|
|
||||||
item = QTableWidgetItem(table_name)
|
|
||||||
self.dlg.tableWidget.setItem(i,2,item)
|
|
||||||
i=i+1
|
|
||||||
self.dlg.tableWidget.setColumnWidth(0, 20)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(1, 300)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(2, 300)
|
|
||||||
self.dlg.tableWidget.setHorizontalHeaderLabels(["Code","Schema","Table"])
|
|
||||||
'''
|
|
||||||
else:
|
|
||||||
nb_row = len(data)
|
|
||||||
nb_col = len(data[0])
|
|
||||||
self.dlg.tableWidget.setRowCount(nb_row)
|
|
||||||
self.dlg.tableWidget.setColumnCount(nb_col)
|
|
||||||
for row in range(nb_row):
|
|
||||||
for col in range(nb_col):
|
|
||||||
item = QTableWidgetItem(str(data[row][col]))
|
|
||||||
# Access the value from the 6th column for the current row (style here)
|
|
||||||
value_from_2nd_column = str(data[row][1])
|
|
||||||
# Set tooltip for each row
|
|
||||||
tooltip = f"Nom du flux: {value_from_2nd_column}"
|
|
||||||
item.setToolTip(tooltip)
|
|
||||||
|
|
||||||
# Check if the current column is the "Résumé des métadonnées" column
|
|
||||||
if col == 7:
|
|
||||||
# Set icon for the "Résumé des métadonnées" column
|
|
||||||
icon_path = self.plugin_path + '/metadata.png' # Replace 'path_to_your_icon.png' with the actual path to your icon
|
|
||||||
icon = QIcon(icon_path)
|
|
||||||
item.setIcon(icon)
|
|
||||||
# Store the URL in the item's data for later retrieval
|
|
||||||
url_from_6th_column = str(data2[row][7]) # Assuming the URL is in the next column
|
|
||||||
item.setData(Qt.UserRole, url_from_6th_column)
|
|
||||||
|
|
||||||
self.dlg.tableWidget.setItem(row, col, item)
|
|
||||||
|
|
||||||
self.dlg.tableWidget.setHorizontalHeaderLabels(["Service", "Catégorie", "Flux", "Nom technique", "Url d'accès", "Source", "Style", "Infos"])
|
|
||||||
|
|
||||||
self.dlg.tableWidget.setColumnWidth(0, 76)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(1, 0)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(2, 610)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(3, 0)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(4, 0)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(5, 88)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(6, 0)
|
|
||||||
self.dlg.tableWidget.setColumnWidth(7, 30)
|
|
||||||
|
|
||||||
self.dlg.tableWidget.selectRow(0)
|
|
||||||
'''
|
|
||||||
def selection_flux(self):
|
|
||||||
selected_row = 0
|
|
||||||
selected_items = self.dlg.tableWidget.selectedItems()
|
|
||||||
|
|
||||||
# Assuming you want to compare items in the first column for uniqueness
|
|
||||||
new_item_text = selected_items[2].text()
|
|
||||||
|
|
||||||
if not self.item_already_exists(new_item_text):
|
|
||||||
self.dlg.tableWidget_2.insertRow(selected_row)
|
|
||||||
|
|
||||||
for column in range(self.dlg.tableWidget.columnCount()):
|
|
||||||
cloned_item = selected_items[column].clone()
|
|
||||||
self.dlg.tableWidget_2.setHorizontalHeaderLabels(["Code","Schema", "Table"])
|
|
||||||
self.dlg.tableWidget_2.setColumnCount(3)
|
|
||||||
self.dlg.tableWidget_2.setItem(selected_row, column, cloned_item)
|
|
||||||
|
|
||||||
self.dlg.tableWidget_2.setColumnWidth(0, 50)
|
|
||||||
self.dlg.tableWidget_2.setColumnWidth(1, 300)
|
|
||||||
self.dlg.tableWidget_2.setColumnWidth(2, 300)
|
|
||||||
|
|
||||||
|
|
||||||
def item_already_exists(self, new_item_text):
|
|
||||||
# Assuming you want to compare items in the first column for uniqueness
|
|
||||||
existing_items = self.dlg.tableWidget_2.findItems(new_item_text, QtCore.Qt.MatchExactly)
|
|
||||||
|
|
||||||
# Check if there are any existing items with the same text in the first column
|
|
||||||
return len(existing_items) > 0
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def limite_flux(self):
|
|
||||||
|
|
||||||
if self.dlg.tableWidget_2.rowCount() > 3:
|
|
||||||
self.QMBquestion = QMessageBox.question(iface.mainWindow(), u"Attention !",
|
|
||||||
"Le nombre de flux à charger en une seule fois est limité à 3 pour des questions de performances. Souhaitez vous tout de même charger les " + str(
|
|
||||||
self.dlg.tableWidget_2.rowCount()) + " flux sélectionnés ? (risque de plantage de QGIS)",
|
|
||||||
QMessageBox.Yes | QMessageBox.No)
|
|
||||||
if self.QMBquestion == QMessageBox.Yes:
|
|
||||||
self.chargement_flux()
|
|
||||||
|
|
||||||
if self.QMBquestion == QMessageBox.No:
|
|
||||||
print("Annulation du chargement des couches")
|
|
||||||
|
|
||||||
if self.dlg.tableWidget_2.rowCount() <= 3:
|
|
||||||
self.chargement_flux()
|
|
||||||
|
|
||||||
def chargement_flux(self):
|
|
||||||
|
|
||||||
managerAU = QgsApplication.authManager()
|
|
||||||
k = managerAU.availableAuthMethodConfigs().keys()
|
|
||||||
|
|
||||||
def REQUEST(type):
|
|
||||||
switcher = {
|
|
||||||
'WFS': "GetFeature",
|
|
||||||
'WMS': "GetMap",
|
|
||||||
'WMS+Vecteur': "GetMap",
|
|
||||||
'WMS+Raster': "GetMap",
|
|
||||||
'WMTS': "GetMap"
|
|
||||||
}
|
|
||||||
return switcher.get(type, "nothing")
|
|
||||||
|
|
||||||
|
|
||||||
def displayOnWindows(type, uri, name):
|
|
||||||
'''
|
|
||||||
if type == 'WFS':
|
|
||||||
vlayer = QgsVectorLayer(uri, name, "WFS")
|
|
||||||
# vlayer.setScaleBasedVisibility(True)
|
|
||||||
QgsProject.instance().addMapLayer(vlayer)
|
|
||||||
|
|
||||||
layers = QgsProject.instance().mapLayers() # dictionary
|
|
||||||
|
|
||||||
# rowCount() This property holds the number of rows in the table
|
|
||||||
for row in range(self.dlg.tableWidget_2.rowCount()):
|
|
||||||
# item(row, 0) Returns the item for the given row and column if one has been set; otherwise returns nullptr.
|
|
||||||
_item = self.dlg.tableWidget_2.item(row, 2).text()
|
|
||||||
_legend = self.dlg.tableWidget_2.item(row, 6).text()
|
|
||||||
# print(_item)
|
|
||||||
# print(_legend)
|
|
||||||
|
|
||||||
for layer in layers.values():
|
|
||||||
if layer.name() == _item:
|
|
||||||
if len(_legend) > 1:
|
|
||||||
styles_url = 'https://raw.githubusercontent.com/CEN-Nouvelle-Aquitaine/fluxcen/main/styles_couches/' + _legend + '.qml'
|
|
||||||
|
|
||||||
fp = urllib.request.urlopen(styles_url)
|
|
||||||
mybytes = fp.read()
|
|
||||||
|
|
||||||
document = QDomDocument()
|
|
||||||
document.setContent(mybytes)
|
|
||||||
|
|
||||||
res = layer.importNamedStyle(document)
|
|
||||||
layer.triggerRepaint()
|
|
||||||
|
|
||||||
else:
|
|
||||||
print("Pas de style à charger pour cette couche")
|
|
||||||
|
|
||||||
elif type == 'WMS' or type == 'WMS Raster' or type == 'WMS Vecteur' or type == 'WMTS':
|
|
||||||
rlayer = QgsRasterLayer(uri, name, "WMS")
|
|
||||||
QgsProject.instance().addMapLayer(rlayer)
|
|
||||||
else:
|
|
||||||
print("Unknown datatype !")
|
|
||||||
'''
|
|
||||||
p = []
|
|
||||||
|
|
||||||
for row in range(0, self.dlg.tableWidget_2.rowCount()):
|
|
||||||
## supression de la partie de l'url après le point d'interrogation
|
|
||||||
if dbtype == sigdb:
|
|
||||||
code = self.dlg.tableWidget_2.item(row,0).text()
|
|
||||||
schema = '_'+code+'_'+self.dlg.tableWidget_2.item(row,1).text()
|
|
||||||
if code == 'travaux' or code == 'agregation':
|
|
||||||
schema = self.dlg.tableWidget_2.item(row,1).text()
|
|
||||||
table = self.dlg.tableWidget_2.item(row,2).text()#.split("?", 1)[0]
|
|
||||||
if dbtype == refdb:
|
|
||||||
# code = self.dlg.tableWidget_2.item(row,0).text()
|
|
||||||
schema = self.dlg.tableWidget_2.item(row,1).text()
|
|
||||||
table = self.dlg.tableWidget_2.item(row,2).text()#.split("?", 1)[0]
|
|
||||||
uri = QgsDataSourceUri()
|
|
||||||
uri.setConnection(host ,port ,dbtype ,user ,mdp)
|
|
||||||
|
|
||||||
# nom du schéma à remplacer: "hydrographie" à supprimer et mettre "couches_collaboratives" lorsqu'on aura regroupé les couches à modifier dans un même schéma
|
|
||||||
|
|
||||||
uri.setDataSource(schema, table, "geom")
|
|
||||||
uri.setKeyColumn('gid')
|
|
||||||
|
|
||||||
# Chargement de la couche PostGIS
|
|
||||||
geom_type ='SELECT right(st_geometrytype(geom),-3) as a FROM '+schema+'.'+table+' GROUP BY a'
|
|
||||||
cur.execute(geom_type)
|
|
||||||
list_typegeom = cur.fetchall()
|
|
||||||
print(len(list_typegeom))
|
|
||||||
if len(list_typegeom) > 1:
|
|
||||||
for typegeom in list_typegeom:
|
|
||||||
if typegeom[0] == 'MultiPolygon':
|
|
||||||
uri.setWkbType(QgsWkbTypes.MultiPolygon)
|
|
||||||
elif typegeom[0] == 'MultiLineString':
|
|
||||||
uri.setWkbType(QgsWkbTypes.MultiLineString)
|
|
||||||
elif typegeom[0] == 'Point':
|
|
||||||
uri.setWkbType(QgsWkbTypes.Point)
|
|
||||||
if typegeom[0] == 'Polygon':
|
|
||||||
uri.setWkbType(QgsWkbTypes.Polygon)
|
|
||||||
elif typegeom[0] == 'LineString':
|
|
||||||
uri.setWkbType(QgsWkbTypes.LineString)
|
|
||||||
elif typegeom[0] == 'MultiPoint':
|
|
||||||
uri.setWkbType(QgsWkbTypes.MultiPoint)
|
|
||||||
if (typegeom[0] != None and typegeom[0] != 'Polygon'):
|
|
||||||
uri.setSrid('2154')
|
|
||||||
layer = QgsVectorLayer(uri.uri(), table, "postgres")
|
|
||||||
# Ajout de la couche au canevas QGIS
|
|
||||||
QgsProject.instance().addMapLayer(layer)
|
|
||||||
else:
|
|
||||||
layer = QgsVectorLayer(uri.uri(), table, "postgres")
|
|
||||||
# Ajout de la couche au canevas QGIS
|
|
||||||
QgsProject.instance().addMapLayer(layer)
|
|
||||||
'''
|
|
||||||
try:
|
|
||||||
service = re.search('SERVICE=(.+?)&VERSION', self.dlg.tableWidget_2.item(row,4).text()).group(1)
|
|
||||||
except:
|
|
||||||
service = '1.0.0'
|
|
||||||
try:
|
|
||||||
version = re.search('VERSION=(.+?)&REQUEST', self.dlg.tableWidget_2.item(row,4).text()).group(1)
|
|
||||||
except:
|
|
||||||
version = '1.0.0'
|
|
||||||
|
|
||||||
if self.dlg.tableWidget_2.item(row,0).text() == 'WMS' or self.dlg.tableWidget_2.item(row,0).text() == 'WMS Vecteur' or self.dlg.tableWidget_2.item(row,0).text() == 'WMS Raster':
|
|
||||||
a = Flux(
|
|
||||||
self.dlg.tableWidget_2.item(row,0).text(),
|
|
||||||
self.dlg.tableWidget_2.item(row,1).text(),
|
|
||||||
self.dlg.tableWidget_2.item(row,2).text(),
|
|
||||||
self.dlg.tableWidget_2.item(row,3).text(),
|
|
||||||
"url="+url,
|
|
||||||
{
|
|
||||||
'service': self.dlg.tableWidget_2.item(row,0).text(),
|
|
||||||
'version': version,
|
|
||||||
'crs': "EPSG:2154",
|
|
||||||
'format' : "image/png",
|
|
||||||
'layers': self.dlg.tableWidget_2.item(row,3).text()+"&styles"
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
p.append(a)
|
|
||||||
|
|
||||||
uri = p[row].url + '&' + urllib.parse.unquote(urllib.parse.urlencode(p[row].parameters))
|
|
||||||
# print(uri)
|
|
||||||
if not QgsProject.instance().mapLayersByName(p[row].nom_commercial):
|
|
||||||
displayOnWindows(p[row].type, uri, p[row].nom_commercial)
|
|
||||||
else:
|
|
||||||
print("Couche "+p[row].nom_commercial+" déjà chargée")
|
|
||||||
|
|
||||||
|
|
||||||
elif self.dlg.tableWidget_2.item(row,0).text() == 'WFS':
|
|
||||||
|
|
||||||
a = Flux(
|
|
||||||
self.dlg.tableWidget_2.item(row, 0).text(),
|
|
||||||
self.dlg.tableWidget_2.item(row, 1).text(),
|
|
||||||
self.dlg.tableWidget_2.item(row, 2).text(),
|
|
||||||
self.dlg.tableWidget_2.item(row, 3).text(),
|
|
||||||
url,
|
|
||||||
{
|
|
||||||
'VERSION': version,
|
|
||||||
'TYPENAME': self.dlg.tableWidget_2.item(row, 3).text(),
|
|
||||||
'request': "GetFeature",
|
|
||||||
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
p.append(a)
|
|
||||||
|
|
||||||
uri = p[row].url + '?' + urllib.parse.unquote(urllib.parse.urlencode(p[row].parameters))
|
|
||||||
|
|
||||||
try:
|
|
||||||
response = requests.get(uri)
|
|
||||||
|
|
||||||
if response.status_code == 401:
|
|
||||||
print("Statut de réponse: 401")
|
|
||||||
|
|
||||||
if len(list(k)) == 0:
|
|
||||||
QMessageBox.question(iface.mainWindow(), u"Attention", "Veuillez ajouter une entrée de configuration d'authentification dans QGIS pour accéder aux flux CEN-NA sécurisés par un mot de passe (Flux 'FoncierCEN')", QMessageBox.Ok)
|
|
||||||
else:
|
|
||||||
# Add 'authcfg' to the parameters dictionary
|
|
||||||
p[row].parameters['authcfg'] = list(k)[0]
|
|
||||||
|
|
||||||
# Update the URI with the modified parameters
|
|
||||||
uri = p[row].url + '?' + urllib.parse.unquote(urllib.parse.urlencode(p[row].parameters))
|
|
||||||
|
|
||||||
# Make the request again with the updated URI
|
|
||||||
response = requests.get(uri)
|
|
||||||
elif response.status_code == 200:
|
|
||||||
print("Statut de réponse: 200.")
|
|
||||||
else:
|
|
||||||
print(f"Statut de réponse: {response.status_code}")
|
|
||||||
|
|
||||||
except requests.exceptions.RequestException as e:
|
|
||||||
print(f"problème de requete: {e}")
|
|
||||||
|
|
||||||
|
|
||||||
if not QgsProject.instance().mapLayersByName(p[row].nom_commercial):
|
|
||||||
displayOnWindows(p[row].type, uri, p[row].nom_commercial)
|
|
||||||
else:
|
|
||||||
print("Couche "+p[row].nom_commercial+" déjà chargée")
|
|
||||||
|
|
||||||
|
|
||||||
elif self.dlg.tableWidget_2.item(row, 0).text() == 'PostGIS':
|
|
||||||
|
|
||||||
# Connexion à la base de données PostGIS
|
|
||||||
uri = QgsDataSourceUri()
|
|
||||||
uri.setConnection("sandbox.cen-nouvelle-aquitaine.dev", "5432", "piezo", "", "")
|
|
||||||
# nom du schéma à remplacer: "hydrographie" à supprimer et mettre "couches_collaboratives" lorsqu'on aura regroupé les couches à modifier dans un même schéma
|
|
||||||
uri.setDataSource("collaboratif", self.dlg.tableWidget_2.item(row, 3).text(), "geom")
|
|
||||||
# Chargement de la couche PostGIS
|
|
||||||
layer = QgsVectorLayer(uri.uri(), self.dlg.tableWidget_2.item(row, 2).text(), "postgres")
|
|
||||||
|
|
||||||
# Ajout de la couche au canevas QGIS
|
|
||||||
QgsProject.instance().addMapLayer(layer)
|
|
||||||
|
|
||||||
else:
|
|
||||||
print("Les flux WMTS et autres ne sont pas encore gérés par le plugin")
|
|
||||||
'''
|
|
||||||
def combobox_custom(self):
|
|
||||||
if dbtype == sigdb:
|
|
||||||
self.dlg.comboBox.clear()
|
|
||||||
self.dlg.comboBox.addItem("toutes les catégories")
|
|
||||||
self.dlg.comboBox.addItem('00')
|
|
||||||
self.dlg.comboBox.addItem('01')
|
|
||||||
self.dlg.comboBox.addItem('07')
|
|
||||||
self.dlg.comboBox.addItem('26')
|
|
||||||
self.dlg.comboBox.addItem('42')
|
|
||||||
self.dlg.comboBox.addItem('69')
|
|
||||||
self.dlg.comboBox.addItem('agregation')
|
|
||||||
self.dlg.comboBox.addItem('travaux')
|
|
||||||
self.dlg.comboBox.addItem('form')
|
|
||||||
if dbtype == refdb:
|
|
||||||
custom_list=schemaname_distinct
|
|
||||||
cur.execute(custom_list)
|
|
||||||
list_schema = cur.fetchall()
|
|
||||||
self.dlg.comboBox.clear()
|
|
||||||
self.dlg.comboBox.addItem("toutes les catégories")
|
|
||||||
for baxval in list_schema:
|
|
||||||
self.dlg.comboBox.addItem(baxval[0])
|
|
||||||
def filtre_dynamique(self, filter_text):
|
|
||||||
|
|
||||||
for i in range(self.dlg.tableWidget.rowCount()):
|
|
||||||
for j in range(self.dlg.tableWidget.columnCount()):
|
|
||||||
item = self.dlg.tableWidget.item(i, j)
|
|
||||||
match = filter_text.lower() not in item.text().lower()
|
|
||||||
self.dlg.tableWidget.setRowHidden(i, match)
|
|
||||||
if not match:
|
|
||||||
break
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def popup(self):
|
|
||||||
|
|
||||||
self.dialog = Popup() # +++ - self
|
|
||||||
self.dialog.text_edit.show()
|
|
||||||
|
|
||||||
# from owslib.wfs import WebFeatureService
|
|
||||||
# import csv
|
|
||||||
|
|
||||||
# wfs = WebFeatureService(url='https://opendata.cen-nouvelle-aquitaine.org/geoserver/agriculture/wfs')
|
|
||||||
# agriculture = list(wfs.contents)
|
|
||||||
# with open('C:/Users/Romain/Desktop/test.csv', "a+", encoding="ISO-8859-1", newline='') as f:
|
|
||||||
# writer = csv.writer(f)
|
|
||||||
# for row in agriculture:
|
|
||||||
# writer.writerow(row.split())
|
|
||||||
#
|
|
||||||
# from owslib.wms import WebMapService
|
|
||||||
# wms = WebMapService('https://opendata.cen-nouvelle-aquitaine.org/geoserver/fond_carto/wms')
|
|
||||||
# fonds_carto = list(wms.contents)
|
|
||||||
# with open('C:/Users/Romain/Desktop/test.csv', "a+", encoding="ISO-8859-1", newline='') as f:
|
|
||||||
# writer = csv.writer(f)
|
|
||||||
# for row in fonds_carto:
|
|
||||||
# writer.writerow(row.split())
|
|
||||||
#
|
|
||||||
# import csv
|
|
||||||
#
|
|
||||||
# fluxWMS = ['AGG_TMM', '16-014_Brandes_de_Soyaux_2020-05', '17IMERIS_Bois-Charles_Vallée-du-Larry_2022_01', '17IMERIS_Grand-Champ_2022-01', '19PTOR_MNS_filtre_futurs_travaux_2021-10_L93', '19PTOR_MNS_filtre_travaux_realises_2021-10_L93', '19PTOR_ortho_2021-10_L93', '23CELI_marais_du_chancelier_2022_03_24', '23CLAM_Rocher_de_Clamouzat_2020-11', '23DIAB_lande_du_pont_du_diable_nord_2021-10_L93', '23DIAB_lande_du_pont_du_diable_sud_2021-10_L93', '23LAND_RNN_etang_des_landes_2020-08_L93', '33_Lagune-108-2021-08', '79BLVI_Blanchère-de-Viennay_2021-10', '79VGAT_Vallée-du-Gâteau_Pressigny_2020-02', '79VGAT_Vallée-du-Gâteau_Pressigny_2021-10', '86-001_TMM_CA-CD_2020-07', '86-500_Clain-sud_Etang-du-Pin', '86_AT_Chalandray_2021-10', '87CREN_siege_saint_gence_2021-09', '87GRLA_grandes_landes_2021-09-24', '87SANA_sanadie_2021-09-24', 'a_16_030_Prairies_de_Vouharte_2019_09', 'a_17_474_Estauaire_de_la_Gironde_Les_Pr_s_de_la_Rouille_2019_08', 'a_17_474_Estauaire_de_la_Gironde_Moulin_Rompu_2019_08', 'a_17_474_Estuaire_de_la_Gironde_Zone_Humide_de_la_Motte_Ronde_2021_04', 'a_17_IMERIS_Carriere_du_Planton_2021_08_12', 'a_17_LGV_Ragouillis_2021_08_12', 'a_33_Lagune_058_2021_08', 'a_33_Lagune_070_2021_08', 'a_33_Lagune_094_2021_08', 'a_33_Lagune_162_2021_08', 'a_33_Lagune_165_2021_08', 'a_33_Lagunes_207_208_209_2021_08', 'a_79_001_Clussais_la_Pommeraie_2020_11', 'a_79_008_Landes_de_L_Hopiteau_2019_09', 'a_79_020_Bessines_1_avant_travaux_2019_10', 'a_79_020_Bessines_2_pendant_travaux_2019_11', 'a_79_020_Bessines_3_apres_travaux_2020_12', 'a_79_044_Carriere_des_Landes_2020_09', 'a_79_AT_Vernoux_en_Gatine_2020_09', 'a_79_Sources_de_la_Sevre_Niortaise_Pierre_levee_2020_09', 'a_86_001_TMM_AA_2020_06', 'a_86_001_TMM_AB_2020_06', 'a_86_001_TMM_AC_2020_06', 'a_86_001_TMM_AD_2020_06', 'a_86_001_TMM_AE_2020_06', 'a_86_001_TMM_AF_2020_06', 'a_86_001_TMM_AG_2020_07', 'a_86_001_TMM_BA_2020_06', 'a_86_001_TMM_BB_2020_06', 'a_86_001_TMM_BC_2020_06', 'a_86_001_TMM_BD_2020_06', 'a_86_001_TMM_BE_2020_07', 'a_86_001_TMM_BF_2021_06', 'a_86_001_TMM_CB_2020_07', 'a_86_001_TMM_CC_2020_07', 'a_86_001_TMM_CC_2021_06', 'a_86_001_TMM_CD_2021_06', 'a_86_001_TMM_CE_2020_07', 'a_86_001_TMM_CF_2020_09', 'a_86_001_TMM_DA_2020_07', 'a_86_001_TMM_DB_2020_09', 'a_86_001_TMM_DC_2021_06', 'a_86_001_TMM_EA_2020_06', 'a_86_001_TMM_EB_2020_06', 'a_86_001_TMM_EC_2020_06', 'a_86_001_TMM_FA_2020_06', 'a_86_001_TMM_FB_2020_07', 'a_86_001_TMM_FC_2020_07', 'a_86_001_TMM_FC_2021_06', 'a_86_001_TMM_HA_2020_09', 'a_86_001_TMM_IA_2020_06', 'a_86_001_TMM_IB_2020_06', 'a_86_001_TMM_IC_2020_06', 'a_86_001_TMM_JA_2020_07', 'a_86_001_TMM_JB_2020_07', 'a_86_001_TMM_JC_2020_07', 'a_86_001_TMM_JE_2020_07', 'a_86_001_TMM_KA_2020_07', 'a_86_001_TMM_KB_2020_07', 'a_86_003_Falunieres_de_Moulin_Pochas_2019_09', 'a_86_006_Landes_et_pelouses_de_Lussac_Sillars_2019_08', 'a_86_011_Landes_de_Sainte_Marie_2019_09', 'a_86_025_Marais_des_Ragouillis_2020_11', 'a_86_025_Marais_des_Ragouillis_2021_02', 'a_86_026_Etangs_Baro_2019_09', 'a_86_029_Vallee_de_la_Longere_2019_09', 'a_86_037_Tourbiere_des_Regeasses_2021_06', 'a_86_038_Vallees_de_la_Vienne_et_du_Clain_Persac_2019_09', 'a_86_038_Vallees_de_la_Vienne_et_du_Clain_Persac_2020_12', 'a_86_052_Fontaine_le_Comte_nord_2020_11', 'a_86_052_Fontaine_le_Comte_sud_2020_11', 'a_86_054_Vallee_de_la_Vonne_2020_11', 'a_86_058_Carriere_de_Puy_Herve_2021_02_09', 'a_86_058_Carriere_de_Puy_Herve_2021_02_25', 'a_86_060_Bocage_de_la_Geoffronniere_2020_11', 'a_86_Le_Cormier_2021_05']
|
|
||||||
#
|
|
||||||
# with open('C:/Users/Romain/Desktop/test.csv', "a+", encoding="ISO-8859-1", newline='') as f:
|
|
||||||
# writer = csv.writer(f)
|
|
||||||
# for row in fluxWMS:
|
|
||||||
# writer.writerow(row.split())
|
|
||||||
|
|
||||||
#### Récupération des métadonnées des couches quand disponibles:
|
|
||||||
|
|
||||||
# from owslib.wms import WebMapService
|
|
||||||
# wms = WebMapService('http://geoservices.brgm.fr/geologie?service=WMS+Raster', version='1.1.1')
|
|
||||||
# print(list(wms.contents))
|
|
||||||
#
|
|
||||||
# print(wms['IDPR'].abstract)
|
|
||||||
@ -1,44 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
/***************************************************************************
|
|
||||||
FluxCENDialog
|
|
||||||
A QGIS plugin
|
|
||||||
Flux IGN etc etc
|
|
||||||
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
|
|
||||||
-------------------
|
|
||||||
begin : 2022-04-04
|
|
||||||
git sha : $Format:%H$
|
|
||||||
copyright : (C) 2022 by Romain Montillet
|
|
||||||
email : r.montillet@cen-na.org
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
/***************************************************************************
|
|
||||||
* *
|
|
||||||
* This program is free software; you can redistribute it and/or modify *
|
|
||||||
* it under the terms of the GNU General Public License as published by *
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or *
|
|
||||||
* (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
***************************************************************************/
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
|
||||||
|
|
||||||
from qgis.PyQt import uic
|
|
||||||
from qgis.PyQt import QtWidgets
|
|
||||||
|
|
||||||
# This loads your .ui file so that PyQt can populate your plugin with the elements from Qt Designer
|
|
||||||
FORM_CLASS, _ = uic.loadUiType(os.path.join(
|
|
||||||
os.path.dirname(__file__), 'FluxCEN_dialog_base.ui'))
|
|
||||||
|
|
||||||
|
|
||||||
class FluxCENDialog(QtWidgets.QDialog, FORM_CLASS):
|
|
||||||
def __init__(self, parent=None):
|
|
||||||
"""Constructor."""
|
|
||||||
super(FluxCENDialog, self).__init__(parent)
|
|
||||||
# Set up the user interface from Designer through FORM_CLASS.
|
|
||||||
# After self.setupUi() you can access any designer object by doing
|
|
||||||
# self.<objectname>, and you can use autoconnect slots - see
|
|
||||||
# http://qt-project.org/doc/qt-4.8/designer-using-a-ui-file.html
|
|
||||||
# #widgets-and-dialogs-with-auto-connect
|
|
||||||
self.setupUi(self)
|
|
||||||
@ -1,247 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
# Form implementation generated from reading ui file 'FluxCEN_dialog_base.ui'
|
|
||||||
#
|
|
||||||
# Created by: PyQt5 UI code generator 5.15.7
|
|
||||||
#
|
|
||||||
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
|
||||||
# run again. Do not edit this file unless you know what you are doing.
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
# Form implementation generated from reading ui file 'FluxCEN_dialog_base.ui'
|
|
||||||
#
|
|
||||||
# Created by: PyQt5 UI code generator 5.15.4
|
|
||||||
#
|
|
||||||
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
|
||||||
# run again. Do not edit this file unless you know what you are doing.
|
|
||||||
import resources
|
|
||||||
|
|
||||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
|
||||||
|
|
||||||
|
|
||||||
class Ui_Dialog(object):
|
|
||||||
def setupUi(self, Dialog):
|
|
||||||
Dialog.setObjectName("Dialog")
|
|
||||||
Dialog.setEnabled(True)
|
|
||||||
Dialog.resize(910, 800)
|
|
||||||
Dialog.setMinimumSize(QtCore.QSize(910, 800))
|
|
||||||
Dialog.setMaximumSize(QtCore.QSize(910, 800))
|
|
||||||
self.comboBox = QtWidgets.QComboBox(Dialog)
|
|
||||||
self.comboBox.setGeometry(QtCore.QRect(260, 130, 171, 22))
|
|
||||||
self.comboBox.setEditable(False)
|
|
||||||
self.comboBox.setCurrentText("")
|
|
||||||
self.comboBox.setObjectName("comboBox")
|
|
||||||
self.comboBox_2 = QtWidgets.QComboBox(Dialog)
|
|
||||||
self.comboBox_2.setGeometry(QtCore.QRect(370, 80, 171, 22))
|
|
||||||
self.comboBox_2.setEditable(False)
|
|
||||||
self.comboBox_2.setCurrentText("")
|
|
||||||
self.comboBox_2.setObjectName("comboBox_2")
|
|
||||||
self.label_3 = QtWidgets.QLabel(Dialog)
|
|
||||||
self.label_3.setGeometry(QtCore.QRect(50, 20, 271, 91))
|
|
||||||
self.label_3.setText("")
|
|
||||||
self.label_3.setPixmap(QtGui.QPixmap(":/plugins/CenRa_FLUX/logo.png"))
|
|
||||||
self.label_3.setScaledContents(True)
|
|
||||||
self.label_3.setObjectName("label_3")
|
|
||||||
self.pushButton_2 = QtWidgets.QPushButton(Dialog)
|
|
||||||
self.pushButton_2.setGeometry(QtCore.QRect(370, 750, 171, 23))
|
|
||||||
self.pushButton_2.setObjectName("pushButton_2")
|
|
||||||
self.tableWidget = QtWidgets.QTableWidget(Dialog)
|
|
||||||
self.tableWidget.setEnabled(True)
|
|
||||||
self.tableWidget.setGeometry(QtCore.QRect(30, 170, 850, 281))
|
|
||||||
self.tableWidget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection)
|
|
||||||
self.tableWidget.setObjectName("tableWidget")
|
|
||||||
self.tableWidget.setColumnCount(0)
|
|
||||||
self.tableWidget.setRowCount(0)
|
|
||||||
self.tableWidget_2 = QtWidgets.QTableWidget(Dialog)
|
|
||||||
self.tableWidget_2.setGeometry(QtCore.QRect(30, 550, 850, 181))
|
|
||||||
self.tableWidget_2.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection)
|
|
||||||
self.tableWidget_2.setObjectName("tableWidget_2")
|
|
||||||
self.tableWidget_2.setColumnCount(0)
|
|
||||||
self.tableWidget_2.setRowCount(0)
|
|
||||||
self.commandLinkButton = QtWidgets.QCommandLinkButton(Dialog)
|
|
||||||
self.commandLinkButton.setGeometry(QtCore.QRect(400, 470, 61, 61))
|
|
||||||
self.commandLinkButton.setText("")
|
|
||||||
icon = QtGui.QIcon()
|
|
||||||
icon.addPixmap(QtGui.QPixmap(":/plugins/CenRa_FLUX/arrow-bottom.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
|
||||||
self.commandLinkButton.setIcon(icon)
|
|
||||||
self.commandLinkButton.setIconSize(QtCore.QSize(50, 40))
|
|
||||||
self.commandLinkButton.setObjectName("commandLinkButton")
|
|
||||||
self.commandLinkButton_2 = QtWidgets.QCommandLinkButton(Dialog)
|
|
||||||
self.commandLinkButton_2.setGeometry(QtCore.QRect(460, 470, 61, 61))
|
|
||||||
self.commandLinkButton_2.setText("")
|
|
||||||
icon1 = QtGui.QIcon()
|
|
||||||
icon1.addPixmap(QtGui.QPixmap(":/plugins/CenRa_FLUX/arrow-up.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
|
||||||
self.commandLinkButton_2.setIcon(icon1)
|
|
||||||
self.commandLinkButton_2.setIconSize(QtCore.QSize(50, 40))
|
|
||||||
self.commandLinkButton_2.setObjectName("commandLinkButton_2")
|
|
||||||
self.lineEdit = QtWidgets.QLineEdit(Dialog)
|
|
||||||
self.lineEdit.setEnabled(True)
|
|
||||||
self.lineEdit.setGeometry(QtCore.QRect(480, 130, 171, 21))
|
|
||||||
self.lineEdit.setAlignment(QtCore.Qt.AlignCenter)
|
|
||||||
self.lineEdit.setReadOnly(False)
|
|
||||||
self.lineEdit.setClearButtonEnabled(True)
|
|
||||||
self.lineEdit.setObjectName("lineEdit")
|
|
||||||
self.label = QtWidgets.QLabel(Dialog)
|
|
||||||
self.label.setGeometry(QtCore.QRect(40, 150, 161, 16))
|
|
||||||
font = QtGui.QFont()
|
|
||||||
font.setFamily("Calibri")
|
|
||||||
font.setPointSize(10)
|
|
||||||
font.setItalic(False)
|
|
||||||
self.label.setFont(font)
|
|
||||||
self.label.setObjectName("label")
|
|
||||||
self.label_2 = QtWidgets.QLabel(Dialog)
|
|
||||||
self.label_2.setGeometry(QtCore.QRect(30, 530, 171, 16))
|
|
||||||
font = QtGui.QFont()
|
|
||||||
font.setFamily("Calibri")
|
|
||||||
font.setPointSize(10)
|
|
||||||
font.setItalic(False)
|
|
||||||
self.label_2.setFont(font)
|
|
||||||
self.label_2.setObjectName("label_2")
|
|
||||||
|
|
||||||
self.retranslateUi(Dialog)
|
|
||||||
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
||||||
|
|
||||||
def retranslateUi(self, Dialog):
|
|
||||||
_translate = QtCore.QCoreApplication.translate
|
|
||||||
Dialog.setWindowTitle(_translate("Dialog", "SIG CEN-RA"))
|
|
||||||
self.pushButton_2.setText(_translate("Dialog", "Charger les couches"))
|
|
||||||
self.tableWidget.setSortingEnabled(True)
|
|
||||||
self.lineEdit.setText(_translate("Dialog", "Recherche par mots-clés"))
|
|
||||||
self.label.setText(_translate("Dialog", "Liste des flux disponibles :"))
|
|
||||||
self.label_2.setText(_translate("Dialog", "Flux sélectionné(s) à charger :"))
|
|
||||||
|
|
||||||
'''
|
|
||||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
|
||||||
|
|
||||||
|
|
||||||
class Ui_Dialog(object):
|
|
||||||
def setupUi(self, Dialog):
|
|
||||||
Dialog.setObjectName("Dialog")
|
|
||||||
Dialog.setEnabled(True)
|
|
||||||
Dialog.resize(910, 800)
|
|
||||||
Dialog.setMinimumSize(QtCore.QSize(910, 800))
|
|
||||||
Dialog.setMaximumSize(QtCore.QSize(910, 800))
|
|
||||||
self.comboBox = QtWidgets.QComboBox(Dialog)
|
|
||||||
self.comboBox.setGeometry(QtCore.QRect(260, 130, 171, 22))
|
|
||||||
self.comboBox.setEditable(False)
|
|
||||||
self.comboBox.setCurrentText("")
|
|
||||||
self.comboBox.setObjectName("comboBox")
|
|
||||||
self.label_3 = QtWidgets.QLabel(Dialog)
|
|
||||||
self.label_3.setGeometry(QtCore.QRect(350, 20, 221, 71))
|
|
||||||
self.label_3.setText("")
|
|
||||||
self.label_3.setPixmap(QtGui.QPixmap(":/plugins/FluxCEN/logo.png"))
|
|
||||||
self.label_3.setScaledContents(True)
|
|
||||||
self.label_3.setObjectName("label_3")
|
|
||||||
self.pushButton_2 = QtWidgets.QPushButton(Dialog)
|
|
||||||
self.pushButton_2.setGeometry(QtCore.QRect(370, 750, 171, 23))
|
|
||||||
self.pushButton_2.setObjectName("pushButton_2")
|
|
||||||
self.tableWidget = QtWidgets.QTableWidget(Dialog)
|
|
||||||
self.tableWidget.setEnabled(True)
|
|
||||||
self.tableWidget.setGeometry(QtCore.QRect(30, 170, 850, 281))
|
|
||||||
self.tableWidget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection)
|
|
||||||
self.tableWidget.setObjectName("tableWidget")
|
|
||||||
self.tableWidget.setColumnCount(0)
|
|
||||||
self.tableWidget.setRowCount(0)
|
|
||||||
self.tableWidget_2 = QtWidgets.QTableWidget(Dialog)
|
|
||||||
self.tableWidget_2.setGeometry(QtCore.QRect(30, 550, 850, 181))
|
|
||||||
self.tableWidget_2.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection)
|
|
||||||
self.tableWidget_2.setObjectName("tableWidget_2")
|
|
||||||
self.tableWidget_2.setColumnCount(0)
|
|
||||||
self.tableWidget_2.setRowCount(0)
|
|
||||||
self.commandLinkButton = QtWidgets.QCommandLinkButton(Dialog)
|
|
||||||
self.commandLinkButton.setGeometry(QtCore.QRect(400, 470, 61, 61))
|
|
||||||
self.commandLinkButton.setText("")
|
|
||||||
icon = QtGui.QIcon()
|
|
||||||
icon.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/arrow-bottom.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
|
||||||
self.commandLinkButton.setIcon(icon)
|
|
||||||
self.commandLinkButton.setIconSize(QtCore.QSize(50, 40))
|
|
||||||
self.commandLinkButton.setObjectName("commandLinkButton")
|
|
||||||
self.commandLinkButton_2 = QtWidgets.QCommandLinkButton(Dialog)
|
|
||||||
self.commandLinkButton_2.setGeometry(QtCore.QRect(460, 470, 61, 61))
|
|
||||||
self.commandLinkButton_2.setText("")
|
|
||||||
icon1 = QtGui.QIcon()
|
|
||||||
icon1.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/arrow-up.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
|
||||||
self.commandLinkButton_2.setIcon(icon1)
|
|
||||||
self.commandLinkButton_2.setIconSize(QtCore.QSize(50, 40))
|
|
||||||
self.commandLinkButton_2.setObjectName("commandLinkButton_2")
|
|
||||||
self.lineEdit = QtWidgets.QLineEdit(Dialog)
|
|
||||||
self.lineEdit.setEnabled(True)
|
|
||||||
self.lineEdit.setGeometry(QtCore.QRect(480, 130, 171, 21))
|
|
||||||
self.lineEdit.setAlignment(QtCore.Qt.AlignCenter)
|
|
||||||
self.lineEdit.setReadOnly(False)
|
|
||||||
self.lineEdit.setClearButtonEnabled(True)
|
|
||||||
self.lineEdit.setObjectName("lineEdit")
|
|
||||||
self.commandLinkButton_3 = QtWidgets.QCommandLinkButton(Dialog)
|
|
||||||
self.commandLinkButton_3.setGeometry(QtCore.QRect(690, 20, 201, 41))
|
|
||||||
font = QtGui.QFont()
|
|
||||||
font.setFamily("Segoe UI")
|
|
||||||
font.setPointSize(9)
|
|
||||||
self.commandLinkButton_3.setFont(font)
|
|
||||||
icon2 = QtGui.QIcon()
|
|
||||||
icon2.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/globe.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
|
||||||
self.commandLinkButton_3.setIcon(icon2)
|
|
||||||
self.commandLinkButton_3.setIconSize(QtCore.QSize(20, 20))
|
|
||||||
self.commandLinkButton_3.setObjectName("commandLinkButton_3")
|
|
||||||
self.label = QtWidgets.QLabel(Dialog)
|
|
||||||
self.label.setGeometry(QtCore.QRect(40, 150, 161, 16))
|
|
||||||
font = QtGui.QFont()
|
|
||||||
font.setFamily("Calibri")
|
|
||||||
font.setPointSize(10)
|
|
||||||
font.setItalic(False)
|
|
||||||
self.label.setFont(font)
|
|
||||||
self.label.setObjectName("label")
|
|
||||||
self.label_2 = QtWidgets.QLabel(Dialog)
|
|
||||||
self.label_2.setGeometry(QtCore.QRect(30, 530, 171, 16))
|
|
||||||
font = QtGui.QFont()
|
|
||||||
font.setFamily("Calibri")
|
|
||||||
font.setPointSize(10)
|
|
||||||
font.setItalic(False)
|
|
||||||
self.label_2.setFont(font)
|
|
||||||
self.label_2.setObjectName("label_2")
|
|
||||||
self.commandLinkButton_4 = QtWidgets.QCommandLinkButton(Dialog)
|
|
||||||
self.commandLinkButton_4.setGeometry(QtCore.QRect(690, 60, 201, 41))
|
|
||||||
font = QtGui.QFont()
|
|
||||||
font.setFamily("Segoe UI")
|
|
||||||
font.setPointSize(9)
|
|
||||||
self.commandLinkButton_4.setFont(font)
|
|
||||||
icon3 = QtGui.QIcon()
|
|
||||||
icon3.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/orthos.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
|
||||||
self.commandLinkButton_4.setIcon(icon3)
|
|
||||||
self.commandLinkButton_4.setIconSize(QtCore.QSize(20, 20))
|
|
||||||
self.commandLinkButton_4.setObjectName("commandLinkButton_4")
|
|
||||||
self.commandLinkButton_5 = QtWidgets.QCommandLinkButton(Dialog)
|
|
||||||
self.commandLinkButton_5.setGeometry(QtCore.QRect(860, 750, 41, 41))
|
|
||||||
font = QtGui.QFont()
|
|
||||||
font.setFamily("Segoe UI")
|
|
||||||
font.setPointSize(9)
|
|
||||||
self.commandLinkButton_5.setFont(font)
|
|
||||||
self.commandLinkButton_5.setText("")
|
|
||||||
icon4 = QtGui.QIcon()
|
|
||||||
icon4.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/info.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
|
||||||
self.commandLinkButton_5.setIcon(icon4)
|
|
||||||
self.commandLinkButton_5.setIconSize(QtCore.QSize(25, 25))
|
|
||||||
self.commandLinkButton_5.setObjectName("commandLinkButton_5")
|
|
||||||
|
|
||||||
self.retranslateUi(Dialog)
|
|
||||||
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
||||||
|
|
||||||
def retranslateUi(self, Dialog):
|
|
||||||
_translate = QtCore.QCoreApplication.translate
|
|
||||||
Dialog.setWindowTitle(_translate("Dialog", "FluxCEN"))
|
|
||||||
self.pushButton_2.setText(_translate("Dialog", "Charger les couches"))
|
|
||||||
self.tableWidget.setSortingEnabled(True)
|
|
||||||
self.lineEdit.setText(_translate("Dialog", "Recherche par mots-clés"))
|
|
||||||
self.commandLinkButton_3.setText(_translate("Dialog", " Ajouter fond de carte OSM"))
|
|
||||||
self.label.setText(_translate("Dialog", "Liste des flux disponibles :"))
|
|
||||||
self.label_2.setText(_translate("Dialog", "Flux sélectionné(s) à charger :"))
|
|
||||||
self.commandLinkButton_4.setText(_translate("Dialog", "Ajouter Ortho (Google sat\')"))
|
|
||||||
|
|
||||||
'''
|
|
||||||
if __name__ == "__main__":
|
|
||||||
import sys
|
|
||||||
app = QtWidgets.QApplication(sys.argv)
|
|
||||||
Dialog = QtWidgets.QDialog()
|
|
||||||
ui = Ui_Dialog()
|
|
||||||
ui.setupUi(Dialog)
|
|
||||||
Dialog.show()
|
|
||||||
sys.exit(app.exec_())
|
|
||||||
@ -1,674 +0,0 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 3, 29 June 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The GNU General Public License is a free, copyleft license for
|
|
||||||
software and other kinds of works.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
the GNU General Public License is intended to guarantee your freedom to
|
|
||||||
share and change all versions of a program--to make sure it remains free
|
|
||||||
software for all its users. We, the Free Software Foundation, use the
|
|
||||||
GNU General Public License for most of our software; it applies also to
|
|
||||||
any other work released this way by its authors. You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to prevent others from denying you
|
|
||||||
these rights or asking you to surrender the rights. Therefore, you have
|
|
||||||
certain responsibilities if you distribute copies of the software, or if
|
|
||||||
you modify it: responsibilities to respect the freedom of others.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must pass on to the recipients the same
|
|
||||||
freedoms that you received. You must make sure that they, too, receive
|
|
||||||
or can get the source code. And you must show them these terms so they
|
|
||||||
know their rights.
|
|
||||||
|
|
||||||
Developers that use the GNU GPL protect your rights with two steps:
|
|
||||||
(1) assert copyright on the software, and (2) offer you this License
|
|
||||||
giving you legal permission to copy, distribute and/or modify it.
|
|
||||||
|
|
||||||
For the developers' and authors' protection, the GPL clearly explains
|
|
||||||
that there is no warranty for this free software. For both users' and
|
|
||||||
authors' sake, the GPL requires that modified versions be marked as
|
|
||||||
changed, so that their problems will not be attributed erroneously to
|
|
||||||
authors of previous versions.
|
|
||||||
|
|
||||||
Some devices are designed to deny users access to install or run
|
|
||||||
modified versions of the software inside them, although the manufacturer
|
|
||||||
can do so. This is fundamentally incompatible with the aim of
|
|
||||||
protecting users' freedom to change the software. The systematic
|
|
||||||
pattern of such abuse occurs in the area of products for individuals to
|
|
||||||
use, which is precisely where it is most unacceptable. Therefore, we
|
|
||||||
have designed this version of the GPL to prohibit the practice for those
|
|
||||||
products. If such problems arise substantially in other domains, we
|
|
||||||
stand ready to extend this provision to those domains in future versions
|
|
||||||
of the GPL, as needed to protect the freedom of users.
|
|
||||||
|
|
||||||
Finally, every program is threatened constantly by software patents.
|
|
||||||
States should not allow patents to restrict development and use of
|
|
||||||
software on general-purpose computers, but in those that do, we wish to
|
|
||||||
avoid the special danger that patents applied to a free program could
|
|
||||||
make it effectively proprietary. To prevent this, the GPL assures that
|
|
||||||
patents cannot be used to render the program non-free.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
||||||
works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means to copy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of an
|
|
||||||
exact copy. The resulting work is called a "modified version" of the
|
|
||||||
earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user through
|
|
||||||
a computer network, with no transfer of a copy, is not conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices"
|
|
||||||
to the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work
|
|
||||||
for making modifications to it. "Object code" means any non-source
|
|
||||||
form of a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users
|
|
||||||
can regenerate automatically from other parts of the Corresponding
|
|
||||||
Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that
|
|
||||||
same work.
|
|
||||||
|
|
||||||
2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not
|
|
||||||
convey, without conditions so long as your license otherwise remains
|
|
||||||
in force. You may convey covered works to others for the sole purpose
|
|
||||||
of having them make modifications exclusively for you, or provide you
|
|
||||||
with facilities for running those works, provided that you comply with
|
|
||||||
the terms of this License in conveying all material for which you do
|
|
||||||
not control copyright. Those thus making or running the covered works
|
|
||||||
for you must do so exclusively on your behalf, under your direction
|
|
||||||
and control, on terms that prohibit them from making any copies of
|
|
||||||
your copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under
|
|
||||||
the conditions stated below. Sublicensing is not allowed; section 10
|
|
||||||
makes it unnecessary.
|
|
||||||
|
|
||||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such circumvention
|
|
||||||
is effected by exercising rights under this License with respect to
|
|
||||||
the covered work, and you disclaim any intention to limit operation or
|
|
||||||
modification of the work as a means of enforcing, against the work's
|
|
||||||
users, your or third parties' legal rights to forbid circumvention of
|
|
||||||
technological measures.
|
|
||||||
|
|
||||||
4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
|
|
||||||
b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under section
|
|
||||||
7. This requirement modifies the requirement in section 4 to
|
|
||||||
"keep intact all notices".
|
|
||||||
|
|
||||||
c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
|
|
||||||
d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms
|
|
||||||
of sections 4 and 5, provided that you also convey the
|
|
||||||
machine-readable Corresponding Source under the terms of this License,
|
|
||||||
in one of these ways:
|
|
||||||
|
|
||||||
a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
|
|
||||||
b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the
|
|
||||||
Corresponding Source from a network server at no charge.
|
|
||||||
|
|
||||||
c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
|
|
||||||
d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
|
|
||||||
e) Convey the object code using peer-to-peer transmission, provided
|
|
||||||
you inform other peers where the object code and Corresponding
|
|
||||||
Source of the work are being offered to the general public at no
|
|
||||||
charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal, family,
|
|
||||||
or household purposes, or (2) anything designed or sold for incorporation
|
|
||||||
into a dwelling. In determining whether a product is a consumer product,
|
|
||||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
||||||
product received by a particular user, "normally used" refers to a
|
|
||||||
typical or common use of that class of product, regardless of the status
|
|
||||||
of the particular user or of the way in which the particular user
|
|
||||||
actually uses, or expects or is expected to use, the product. A product
|
|
||||||
is a consumer product regardless of whether the product has substantial
|
|
||||||
commercial, industrial or non-consumer uses, unless such uses represent
|
|
||||||
the only significant mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to install
|
|
||||||
and execute modified versions of a covered work in that User Product from
|
|
||||||
a modified version of its Corresponding Source. The information must
|
|
||||||
suffice to ensure that the continued functioning of the modified object
|
|
||||||
code is in no case prevented or interfered with solely because
|
|
||||||
modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or updates
|
|
||||||
for a work that has been modified or installed by the recipient, or for
|
|
||||||
the User Product in which it has been modified or installed. Access to a
|
|
||||||
network may be denied when the modification itself materially and
|
|
||||||
adversely affects the operation of the network or violates the rules and
|
|
||||||
protocols for communication across the network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders of
|
|
||||||
that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
|
|
||||||
b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
|
|
||||||
c) Prohibiting misrepresentation of the origin of that material, or
|
|
||||||
requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
|
|
||||||
d) Limiting the use for publicity purposes of names of licensors or
|
|
||||||
authors of the material; or
|
|
||||||
|
|
||||||
e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
|
|
||||||
f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions of
|
|
||||||
it) with contractual assumptions of liability to the recipient, for
|
|
||||||
any liability that these contractual assumptions directly impose on
|
|
||||||
those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions;
|
|
||||||
the above requirements apply either way.
|
|
||||||
|
|
||||||
8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your
|
|
||||||
license from a particular copyright holder is reinstated (a)
|
|
||||||
provisionally, unless and until the copyright holder explicitly and
|
|
||||||
finally terminates your license, and (b) permanently, if the copyright
|
|
||||||
holder fails to notify you of the violation by some reasonable means
|
|
||||||
prior to 60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or
|
|
||||||
run a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims
|
|
||||||
owned or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within
|
|
||||||
the scope of its coverage, prohibits the exercise of, or is
|
|
||||||
conditioned on the non-exercise of one or more of the rights that are
|
|
||||||
specifically granted under this License. You may not convey a covered
|
|
||||||
work if you are a party to an arrangement with a third party that is
|
|
||||||
in the business of distributing software, under which you make payment
|
|
||||||
to the third party based on the extent of your activity of conveying
|
|
||||||
the work, and under which the third party grants, to any of the
|
|
||||||
parties who would receive the covered work from you, a discriminatory
|
|
||||||
patent license (a) in connection with copies of the covered work
|
|
||||||
conveyed by you (or copies made from those copies), or (b) primarily
|
|
||||||
for and in connection with specific products or compilations that
|
|
||||||
contain the covered work, unless you entered into that arrangement,
|
|
||||||
or that patent license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you may
|
|
||||||
not convey it at all. For example, if you agree to terms that obligate you
|
|
||||||
to collect a royalty for further conveying from those to whom you convey
|
|
||||||
the Program, the only way you could satisfy both those terms and this
|
|
||||||
License would be to refrain entirely from conveying the Program.
|
|
||||||
|
|
||||||
13. Use with the GNU Affero General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU Affero General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the special requirements of the GNU Affero General Public License,
|
|
||||||
section 13, concerning interaction through a network will apply to the
|
|
||||||
combination as such.
|
|
||||||
|
|
||||||
14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions of
|
|
||||||
the GNU General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the
|
|
||||||
Program specifies that a certain numbered version of the GNU General
|
|
||||||
Public License "or any later version" applies to it, you have the
|
|
||||||
option of following the terms and conditions either of that numbered
|
|
||||||
version or of any later version published by the Free Software
|
|
||||||
Foundation. If the Program does not specify a version number of the
|
|
||||||
GNU General Public License, you may choose any version ever published
|
|
||||||
by the Free Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future
|
|
||||||
versions of the GNU General Public License can be used, that proxy's
|
|
||||||
public statement of acceptance of a version permanently authorizes you
|
|
||||||
to choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
||||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
||||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
||||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
||||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
||||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
||||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
||||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
||||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
||||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
||||||
SUCH DAMAGES.
|
|
||||||
|
|
||||||
17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
state the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program does terminal interaction, make it output a short
|
|
||||||
notice like this when it starts in an interactive mode:
|
|
||||||
|
|
||||||
<program> Copyright (C) <year> <name of author>
|
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, your program's commands
|
|
||||||
might be different; for a GUI interface, you would use an "about box".
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
||||||
For more information on this, and how to apply and follow the GNU GPL, see
|
|
||||||
<https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your program
|
|
||||||
into proprietary programs. If your program is a subroutine library, you
|
|
||||||
may consider it more useful to permit linking proprietary applications with
|
|
||||||
the library. If this is what you want to do, use the GNU Lesser General
|
|
||||||
Public License instead of this License. But first, please read
|
|
||||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
||||||
@ -1,244 +0,0 @@
|
|||||||
#/***************************************************************************
|
|
||||||
# FluxCEN
|
|
||||||
#
|
|
||||||
# Flux IGN etc etc
|
|
||||||
# -------------------
|
|
||||||
# begin : 2022-04-04
|
|
||||||
# git sha : $Format:%H$
|
|
||||||
# copyright : (C) 2022 by Romain Montillet
|
|
||||||
# email : r.montillet@cen-na.org
|
|
||||||
# ***************************************************************************/
|
|
||||||
#
|
|
||||||
#/***************************************************************************
|
|
||||||
# * *
|
|
||||||
# * This program is free software; you can redistribute it and/or modify *
|
|
||||||
# * it under the terms of the GNU General Public License as published by *
|
|
||||||
# * the Free Software Foundation; either version 2 of the License, or *
|
|
||||||
# * (at your option) any later version. *
|
|
||||||
# * *
|
|
||||||
# ***************************************************************************/
|
|
||||||
|
|
||||||
#################################################
|
|
||||||
# Edit the following to match your sources lists
|
|
||||||
#################################################
|
|
||||||
|
|
||||||
|
|
||||||
#Add iso code for any locales you want to support here (space separated)
|
|
||||||
# default is no locales
|
|
||||||
# LOCALES = af
|
|
||||||
LOCALES =
|
|
||||||
|
|
||||||
# If locales are enabled, set the name of the lrelease binary on your system. If
|
|
||||||
# you have trouble compiling the translations, you may have to specify the full path to
|
|
||||||
# lrelease
|
|
||||||
#LRELEASE = lrelease
|
|
||||||
#LRELEASE = lrelease-qt4
|
|
||||||
|
|
||||||
|
|
||||||
# translation
|
|
||||||
SOURCES = \
|
|
||||||
__init__.py \
|
|
||||||
FluxCEN.py FluxCEN_dialog.py
|
|
||||||
|
|
||||||
PLUGINNAME = FluxCEN
|
|
||||||
|
|
||||||
PY_FILES = \
|
|
||||||
__init__.py \
|
|
||||||
FluxCEN.py FluxCEN_dialog.py
|
|
||||||
|
|
||||||
UI_FILES = FluxCEN_dialog_base.ui
|
|
||||||
|
|
||||||
EXTRAS = metadata.txt icon.png
|
|
||||||
|
|
||||||
EXTRA_DIRS =
|
|
||||||
|
|
||||||
COMPILED_RESOURCE_FILES = resources.py
|
|
||||||
|
|
||||||
PEP8EXCLUDE=pydev,resources.py,conf.py,third_party,ui
|
|
||||||
|
|
||||||
# QGISDIR points to the location where your plugin should be installed.
|
|
||||||
# This varies by platform, relative to your HOME directory:
|
|
||||||
# * Linux:
|
|
||||||
# .local/share/QGIS/QGIS3/profiles/default/python/plugins/
|
|
||||||
# * Mac OS X:
|
|
||||||
# Library/Application Support/QGIS/QGIS3/profiles/default/python/plugins
|
|
||||||
# * Windows:
|
|
||||||
# AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins'
|
|
||||||
|
|
||||||
QGISDIR=C:\Users\Romain\AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins
|
|
||||||
|
|
||||||
#################################################
|
|
||||||
# Normally you would not need to edit below here
|
|
||||||
#################################################
|
|
||||||
|
|
||||||
HELP = help/build/html
|
|
||||||
|
|
||||||
PLUGIN_UPLOAD = $(c)/plugin_upload.py
|
|
||||||
|
|
||||||
RESOURCE_SRC=$(shell grep '^ *<file' resources.qrc | sed 's@</file>@@g;s/.*>//g' | tr '\n' ' ')
|
|
||||||
|
|
||||||
.PHONY: default
|
|
||||||
default:
|
|
||||||
@echo While you can use make to build and deploy your plugin, pb_tool
|
|
||||||
@echo is a much better solution.
|
|
||||||
@echo A Python script, pb_tool provides platform independent management of
|
|
||||||
@echo your plugins and runs anywhere.
|
|
||||||
@echo You can install pb_tool using: pip install pb_tool
|
|
||||||
@echo See https://g-sherman.github.io/plugin_build_tool/ for info.
|
|
||||||
|
|
||||||
compile: $(COMPILED_RESOURCE_FILES)
|
|
||||||
|
|
||||||
%.py : %.qrc $(RESOURCES_SRC)
|
|
||||||
pyrcc5 -o $*.py $<
|
|
||||||
|
|
||||||
%.qm : %.ts
|
|
||||||
$(LRELEASE) $<
|
|
||||||
|
|
||||||
test: compile transcompile
|
|
||||||
@echo
|
|
||||||
@echo "----------------------"
|
|
||||||
@echo "Regression Test Suite"
|
|
||||||
@echo "----------------------"
|
|
||||||
|
|
||||||
@# Preceding dash means that make will continue in case of errors
|
|
||||||
@-export PYTHONPATH=`pwd`:$(PYTHONPATH); \
|
|
||||||
export QGIS_DEBUG=0; \
|
|
||||||
export QGIS_LOG_FILE=/dev/null; \
|
|
||||||
nosetests -v --with-id --with-coverage --cover-package=. \
|
|
||||||
3>&1 1>&2 2>&3 3>&- || true
|
|
||||||
@echo "----------------------"
|
|
||||||
@echo "If you get a 'no module named qgis.core error, try sourcing"
|
|
||||||
@echo "the helper script we have provided first then run make test."
|
|
||||||
@echo "e.g. source run-env-linux.sh <path to qgis install>; make test"
|
|
||||||
@echo "----------------------"
|
|
||||||
|
|
||||||
deploy: compile doc transcompile
|
|
||||||
@echo
|
|
||||||
@echo "------------------------------------------"
|
|
||||||
@echo "Deploying plugin to your .qgis2 directory."
|
|
||||||
@echo "------------------------------------------"
|
|
||||||
# The deploy target only works on unix like operating system where
|
|
||||||
# the Python plugin directory is located at:
|
|
||||||
# $HOME/$(QGISDIR)/python/plugins
|
|
||||||
mkdir -p $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
|
|
||||||
cp -vf $(PY_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
|
|
||||||
cp -vf $(UI_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
|
|
||||||
cp -vf $(COMPILED_RESOURCE_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
|
|
||||||
cp -vf $(EXTRAS) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
|
|
||||||
cp -vfr i18n $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
|
|
||||||
cp -vfr $(HELP) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)/help
|
|
||||||
# Copy extra directories if any
|
|
||||||
(foreach EXTRA_DIR,(EXTRA_DIRS), cp -R (EXTRA_DIR) (HOME)/(QGISDIR)/python/plugins/(PLUGINNAME)/;)
|
|
||||||
|
|
||||||
|
|
||||||
# The dclean target removes compiled python files from plugin directory
|
|
||||||
# also deletes any .git entry
|
|
||||||
dclean:
|
|
||||||
@echo
|
|
||||||
@echo "-----------------------------------"
|
|
||||||
@echo "Removing any compiled python files."
|
|
||||||
@echo "-----------------------------------"
|
|
||||||
find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname "*.pyc" -delete
|
|
||||||
find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname ".git" -prune -exec rm -Rf {} \;
|
|
||||||
|
|
||||||
|
|
||||||
derase:
|
|
||||||
@echo
|
|
||||||
@echo "-------------------------"
|
|
||||||
@echo "Removing deployed plugin."
|
|
||||||
@echo "-------------------------"
|
|
||||||
rm -Rf $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
|
|
||||||
|
|
||||||
zip: deploy dclean
|
|
||||||
@echo
|
|
||||||
@echo "---------------------------"
|
|
||||||
@echo "Creating plugin zip bundle."
|
|
||||||
@echo "---------------------------"
|
|
||||||
# The zip target deploys the plugin and creates a zip file with the deployed
|
|
||||||
# content. You can then upload the zip file on http://plugins.qgis.org
|
|
||||||
rm -f $(PLUGINNAME).zip
|
|
||||||
cd $(HOME)/$(QGISDIR)/python/plugins; zip -9r $(CURDIR)/$(PLUGINNAME).zip $(PLUGINNAME)
|
|
||||||
|
|
||||||
package: compile
|
|
||||||
# Create a zip package of the plugin named $(PLUGINNAME).zip.
|
|
||||||
# This requires use of git (your plugin development directory must be a
|
|
||||||
# git repository).
|
|
||||||
# To use, pass a valid commit or tag as follows:
|
|
||||||
# make package VERSION=Version_0.3.2
|
|
||||||
@echo
|
|
||||||
@echo "------------------------------------"
|
|
||||||
@echo "Exporting plugin to zip package. "
|
|
||||||
@echo "------------------------------------"
|
|
||||||
rm -f $(PLUGINNAME).zip
|
|
||||||
git archive --prefix=$(PLUGINNAME)/ -o $(PLUGINNAME).zip $(VERSION)
|
|
||||||
echo "Created package: $(PLUGINNAME).zip"
|
|
||||||
|
|
||||||
upload: zip
|
|
||||||
@echo
|
|
||||||
@echo "-------------------------------------"
|
|
||||||
@echo "Uploading plugin to QGIS Plugin repo."
|
|
||||||
@echo "-------------------------------------"
|
|
||||||
$(PLUGIN_UPLOAD) $(PLUGINNAME).zip
|
|
||||||
|
|
||||||
transup:
|
|
||||||
@echo
|
|
||||||
@echo "------------------------------------------------"
|
|
||||||
@echo "Updating translation files with any new strings."
|
|
||||||
@echo "------------------------------------------------"
|
|
||||||
@chmod +x scripts/update-strings.sh
|
|
||||||
@scripts/update-strings.sh $(LOCALES)
|
|
||||||
|
|
||||||
transcompile:
|
|
||||||
@echo
|
|
||||||
@echo "----------------------------------------"
|
|
||||||
@echo "Compiled translation files to .qm files."
|
|
||||||
@echo "----------------------------------------"
|
|
||||||
@chmod +x scripts/compile-strings.sh
|
|
||||||
@scripts/compile-strings.sh $(LRELEASE) $(LOCALES)
|
|
||||||
|
|
||||||
transclean:
|
|
||||||
@echo
|
|
||||||
@echo "------------------------------------"
|
|
||||||
@echo "Removing compiled translation files."
|
|
||||||
@echo "------------------------------------"
|
|
||||||
rm -f i18n/*.qm
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@echo
|
|
||||||
@echo "------------------------------------"
|
|
||||||
@echo "Removing uic and rcc generated files"
|
|
||||||
@echo "------------------------------------"
|
|
||||||
rm $(COMPILED_UI_FILES) $(COMPILED_RESOURCE_FILES)
|
|
||||||
|
|
||||||
doc:
|
|
||||||
@echo
|
|
||||||
@echo "------------------------------------"
|
|
||||||
@echo "Building documentation using sphinx."
|
|
||||||
@echo "------------------------------------"
|
|
||||||
cd help; make html
|
|
||||||
|
|
||||||
pylint:
|
|
||||||
@echo
|
|
||||||
@echo "-----------------"
|
|
||||||
@echo "Pylint violations"
|
|
||||||
@echo "-----------------"
|
|
||||||
@pylint --reports=n --rcfile=pylintrc . || true
|
|
||||||
@echo
|
|
||||||
@echo "----------------------"
|
|
||||||
@echo "If you get a 'no module named qgis.core' error, try sourcing"
|
|
||||||
@echo "the helper script we have provided first then run make pylint."
|
|
||||||
@echo "e.g. source run-env-linux.sh <path to qgis install>; make pylint"
|
|
||||||
@echo "----------------------"
|
|
||||||
|
|
||||||
|
|
||||||
# Run pep8 style checking
|
|
||||||
#http://pypi.python.org/pypi/pep8
|
|
||||||
pep8:
|
|
||||||
@echo
|
|
||||||
@echo "-----------"
|
|
||||||
@echo "PEP8 issues"
|
|
||||||
@echo "-----------"
|
|
||||||
@pep8 --repeat --ignore=E203,E121,E122,E123,E124,E125,E126,E127,E128 --exclude $(PEP8EXCLUDE) . || true
|
|
||||||
@echo "-----------"
|
|
||||||
@echo "Ignored in PEP8 check:"
|
|
||||||
@echo $(PEP8EXCLUDE)
|
|
||||||
@ -1,42 +0,0 @@
|
|||||||
<html>
|
|
||||||
<body>
|
|
||||||
<h3>Plugin Builder Results</h3>
|
|
||||||
|
|
||||||
Congratulations! You just built a plugin for QGIS!<br/><br />
|
|
||||||
|
|
||||||
<div id='help' style='font-size:.9em;'>
|
|
||||||
Your plugin <b>FluxCEN</b> was created in:<br>
|
|
||||||
<b>C:\Users\Romain\AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins\fluxcen</b>
|
|
||||||
<p>
|
|
||||||
Your QGIS plugin directory is located at:<br>
|
|
||||||
<b>C:/Users/Romain/AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins</b>
|
|
||||||
<p>
|
|
||||||
<h3>What's Next</h3>
|
|
||||||
<ol>
|
|
||||||
<li>If resources.py is not present in your plugin directory, compile the resources file using pyrcc5 (simply use <b>pb_tool</b> or <b>make</b> if you have automake)
|
|
||||||
<li>Optionally, test the generated sources using <b>make test</b> (or run tests from your IDE)
|
|
||||||
<li>Copy the entire directory containing your new plugin to the QGIS plugin directory (see Notes below)
|
|
||||||
<li>Test the plugin by enabling it in the QGIS plugin manager
|
|
||||||
<li>Customize it by editing the implementation file <b>FluxCEN.py</b>
|
|
||||||
<li>Create your own custom icon, replacing the default <b>icon.png</b>
|
|
||||||
<li>Modify your user interface by opening <b>FluxCEN_dialog_base.ui</b> in Qt Designer
|
|
||||||
</ol>
|
|
||||||
Notes:
|
|
||||||
<ul>
|
|
||||||
<li>You can use <b>pb_tool</b> to compile, deploy, and manage your plugin. Tweak the <i>pb_tool.cfg</i> file included with your plugin as you add files. Install <b>pb_tool</b> using
|
|
||||||
<i>pip</i> or <i>easy_install</i>. See <b>http://loc8.cc/pb_tool</b> for more information.
|
|
||||||
<li>You can also use the <b>Makefile</b> to compile and deploy when you
|
|
||||||
make changes. This requires GNU make (gmake). The Makefile is ready to use, however you
|
|
||||||
will have to edit it to add addional Python source files, dialogs, and translations.
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div style='font-size:.9em;'>
|
|
||||||
<p>
|
|
||||||
For information on writing PyQGIS code, see <b>http://loc8.cc/pyqgis_resources</b> for a list of resources.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<p>
|
|
||||||
©2011-2019 GeoApt LLC - geoapt.com
|
|
||||||
</p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,32 +0,0 @@
|
|||||||
Plugin Builder Results
|
|
||||||
|
|
||||||
Your plugin FluxCEN was created in:
|
|
||||||
C:\Users\Romain\AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins\fluxcen
|
|
||||||
|
|
||||||
Your QGIS plugin directory is located at:
|
|
||||||
C:/Users/Romain/AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins
|
|
||||||
|
|
||||||
What's Next:
|
|
||||||
|
|
||||||
* Copy the entire directory containing your new plugin to the QGIS plugin
|
|
||||||
directory
|
|
||||||
|
|
||||||
* Compile the resources file using pyrcc5
|
|
||||||
|
|
||||||
* Run the tests (``make test``)
|
|
||||||
|
|
||||||
* Test the plugin by enabling it in the QGIS plugin manager
|
|
||||||
|
|
||||||
* Customize it by editing the implementation file: ``FluxCEN.py``
|
|
||||||
|
|
||||||
* Create your own custom icon, replacing the default icon.png
|
|
||||||
|
|
||||||
* Modify your user interface by opening FluxCEN_dialog_base.ui in Qt Designer
|
|
||||||
|
|
||||||
* You can use the Makefile to compile your Ui and resource files when
|
|
||||||
you make changes. This requires GNU make (gmake)
|
|
||||||
|
|
||||||
For more information, see the PyQGIS Developer Cookbook at:
|
|
||||||
http://www.qgis.org/pyqgis-cookbook/index.html
|
|
||||||
|
|
||||||
(C) 2011-2018 GeoApt LLC - geoapt.com
|
|
||||||
@ -1,36 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
"""
|
|
||||||
/***************************************************************************
|
|
||||||
FluxCEN
|
|
||||||
A QGIS plugin
|
|
||||||
Flux IGN etc etc
|
|
||||||
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
|
|
||||||
-------------------
|
|
||||||
begin : 2022-04-04
|
|
||||||
copyright : (C) 2022 by Romain Montillet
|
|
||||||
email : r.montillet@cen-na.org
|
|
||||||
git sha : $Format:%H$
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
/***************************************************************************
|
def classFactory(iface):
|
||||||
* *
|
_ = iface
|
||||||
* This program is free software; you can redistribute it and/or modify *
|
from CenRa_FLUX.CenRa_Flux import PgFlux
|
||||||
* it under the terms of the GNU General Public License as published by *
|
return PgFlux()
|
||||||
* the Free Software Foundation; either version 2 of the License, or *
|
|
||||||
* (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
***************************************************************************/
|
|
||||||
This script initializes the plugin, making it known to QGIS.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
|
||||||
# noinspection PyPep8Naming
|
|
||||||
def classFactory(iface): # pylint: disable=invalid-name
|
|
||||||
"""Load FluxCEN class from file FluxCEN.
|
|
||||||
|
|
||||||
:param iface: A QGIS interface instance.
|
|
||||||
:type iface: QgsInterface
|
|
||||||
"""
|
|
||||||
#
|
|
||||||
from .FluxCEN import FluxCEN
|
|
||||||
return FluxCEN(iface)
|
|
||||||
|
|||||||
@ -6,13 +6,13 @@ from qgis.PyQt import uic
|
|||||||
from qgis.PyQt.QtGui import QPixmap
|
from qgis.PyQt.QtGui import QPixmap
|
||||||
from qgis.PyQt.QtWidgets import QDialog
|
from qgis.PyQt.QtWidgets import QDialog
|
||||||
|
|
||||||
from ..tools.resources import devlog
|
from .tools.resources import devlog
|
||||||
|
|
||||||
ABOUT_FORM_CLASS, _ = uic.loadUiType(
|
ABOUT_FORM_CLASS, _ = uic.loadUiType(
|
||||||
os.path.join(
|
os.path.join(
|
||||||
str(Path(__file__).resolve().parent.parent),
|
str(Path(__file__).resolve().parent),
|
||||||
'forms',
|
'tools/ui',
|
||||||
'flux_about_form.ui'
|
'CenRa_about_form.ui'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
361
CenRa_FLUX/flux_editor.py
Normal file
@ -0,0 +1,361 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import absolute_import
|
||||||
|
# Import the PyQt and QGIS libraries
|
||||||
|
from builtins import next
|
||||||
|
from builtins import str
|
||||||
|
from builtins import object
|
||||||
|
import qgis
|
||||||
|
from qgis.PyQt import QtCore
|
||||||
|
from qgis.PyQt.QtCore import QSettings
|
||||||
|
from qgis.PyQt import QtWidgets
|
||||||
|
from qgis.PyQt.QtWidgets import QAction, QMenu, QDialog
|
||||||
|
from qgis.PyQt.QtGui import QIcon
|
||||||
|
from PyQt5.QtCore import *
|
||||||
|
from PyQt5.QtGui import *
|
||||||
|
from PyQt5 import QtGui
|
||||||
|
from qgis.core import *
|
||||||
|
from qgis.core import QgsDataSourceUri
|
||||||
|
from qgis.PyQt.QtWidgets import (
|
||||||
|
QDialog,
|
||||||
|
QAction,
|
||||||
|
QDockWidget,
|
||||||
|
QFileDialog,
|
||||||
|
QInputDialog,
|
||||||
|
QMenu,
|
||||||
|
QToolButton,
|
||||||
|
QTableWidget,
|
||||||
|
QTableWidgetItem,
|
||||||
|
QVBoxLayout,
|
||||||
|
)
|
||||||
|
from .tools.PythonSQL import *
|
||||||
|
from .tools.resources import (
|
||||||
|
load_ui,
|
||||||
|
resources_path,
|
||||||
|
login_base,
|
||||||
|
send_issues,
|
||||||
|
)
|
||||||
|
from .issues import CenRa_Issues
|
||||||
|
|
||||||
|
from qgis.utils import iface
|
||||||
|
import os.path
|
||||||
|
import webbrowser, os
|
||||||
|
import psycopg2
|
||||||
|
import psycopg2.extras
|
||||||
|
import base64
|
||||||
|
|
||||||
|
first_conn = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbname+" user=first_cnx password=" + password)
|
||||||
|
first_cur = first_conn.cursor(cursor_factory = psycopg2.extras.DictCursor)
|
||||||
|
first_cur.execute("SELECT mdp_w, login_w FROM pg_catalog.pg_user t1, admin_sig.vm_users_sig t2 WHERE t2.oid = t1.usesysid AND (login_w = '" + os_user + "' OR login_w = '" + os_user + "')")
|
||||||
|
res_ident = first_cur.fetchone()
|
||||||
|
mdp = base64.b64decode(str(res_ident[0])).decode('utf-8')
|
||||||
|
user = res_ident[1]
|
||||||
|
first_conn.close()
|
||||||
|
|
||||||
|
EDITOR_CLASS = load_ui('CenRa_Flux_base.ui')
|
||||||
|
|
||||||
|
class Flux_Editor(QDialog, EDITOR_CLASS):
|
||||||
|
|
||||||
|
def __init__(self, parent=None):
|
||||||
|
_ = parent
|
||||||
|
super().__init__()
|
||||||
|
self.setupUi(self)
|
||||||
|
self.settings = QgsSettings()
|
||||||
|
self.s = QSettings()
|
||||||
|
self.setWindowIcon(QtGui.QIcon(resources_path('icons','icon.png')))
|
||||||
|
self.first_start = None
|
||||||
|
self.iface = iface
|
||||||
|
self.label_3.setPixmap(QtGui.QPixmap(resources_path('ui','logo.png')))
|
||||||
|
self.commandLinkButton.setIcon(QtGui.QIcon(resources_path('ui','arrow-bottom.png')))
|
||||||
|
self.commandLinkButton_2.setIcon(QtGui.QIcon(resources_path('ui','arrow-up.png')))
|
||||||
|
|
||||||
|
self.tableWidget.setSelectionBehavior(QTableWidget.SelectRows)
|
||||||
|
self.tableWidget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers)
|
||||||
|
self.comboBox_2.addItem("SIG")
|
||||||
|
self.comboBox_2.addItem('REF')
|
||||||
|
self.comboBox.currentIndexChanged.connect(self.initialisation_flux)
|
||||||
|
self.commandLinkButton.clicked.connect(self.selection_flux)
|
||||||
|
self.tableWidget.itemDoubleClicked.connect(self.selection_flux)
|
||||||
|
self.pushButton_2.clicked.connect(self.limite_flux)
|
||||||
|
self.commandLinkButton_2.clicked.connect(self.suppression_flux)
|
||||||
|
self.tableWidget_2.itemDoubleClicked.connect(self.suppression_flux)
|
||||||
|
self.comboBox_2.currentIndexChanged.connect(self.bd_source)
|
||||||
|
layout = QVBoxLayout()
|
||||||
|
self.lineEdit.textChanged.connect(self.filtre_dynamique)
|
||||||
|
layout.addWidget(self.lineEdit)
|
||||||
|
#self.lineEdit.mousePressEvent = self._mousePressEvent
|
||||||
|
|
||||||
|
#metadonnees_plugin = open(self.plugin_path + '/metadata.txt')
|
||||||
|
#infos_metadonnees = metadonnees_plugin.readlines()
|
||||||
|
|
||||||
|
def raise_(self):
|
||||||
|
"""Run method that performs all the real work"""
|
||||||
|
self.bd_source()
|
||||||
|
|
||||||
|
def bd_source(self):
|
||||||
|
self.activateWindow()
|
||||||
|
bd_origine=self.comboBox_2.currentText()
|
||||||
|
if bd_origine == 'REF':
|
||||||
|
self.run_ref()
|
||||||
|
if bd_origine == 'SIG':
|
||||||
|
self.run_sig()
|
||||||
|
|
||||||
|
def run_ref(self):
|
||||||
|
"""Run method that performs all the real work"""
|
||||||
|
while self.tableWidget_2.rowCount() > 0:
|
||||||
|
self.tableWidget_2.removeRow(self.tableWidget_2.rowCount()-1)
|
||||||
|
# print(self.tableWidget_2.rowCount())
|
||||||
|
global cur,con,dbtype
|
||||||
|
dbtype=refdb
|
||||||
|
con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp)
|
||||||
|
cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor)
|
||||||
|
self.initialisation_flux()
|
||||||
|
self.combobox_custom()
|
||||||
|
# Create the dialog with elements (after translation) and keep reference
|
||||||
|
# Only create GUI ONCE in callback, so that it will only load when the plugin is started
|
||||||
|
if self.first_start == True:
|
||||||
|
self.first_start = False
|
||||||
|
# show the dialog
|
||||||
|
self.show()
|
||||||
|
# Run the dialog event loop
|
||||||
|
result = self.exec_()
|
||||||
|
# See if OK was pressed
|
||||||
|
if result:
|
||||||
|
# Do something useful here - delete the line containing pass and
|
||||||
|
# substitute with your code.
|
||||||
|
pass
|
||||||
|
|
||||||
|
def run_sig(self):
|
||||||
|
"""Run method that performs all the real work"""
|
||||||
|
while self.tableWidget_2.rowCount() > 0:
|
||||||
|
self.tableWidget_2.removeRow(self.tableWidget_2.rowCount()-1)
|
||||||
|
global cur,con,dbtype
|
||||||
|
dbtype=sigdb
|
||||||
|
con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp)
|
||||||
|
cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor)
|
||||||
|
self.initialisation_flux()
|
||||||
|
self.combobox_custom()
|
||||||
|
# Create the dialog with elements (after translation) and keep reference
|
||||||
|
# Only create GUI ONCE in callback, so that it will only load when the plugin is started
|
||||||
|
if self.first_start == True:
|
||||||
|
self.first_start = False
|
||||||
|
# show the dialog
|
||||||
|
self.show()
|
||||||
|
# Run the dialog event loop
|
||||||
|
result = self.exec_()
|
||||||
|
# See if OK was pressed
|
||||||
|
if result:
|
||||||
|
# Do something useful here - delete the line containing pass and
|
||||||
|
# substitute with your code.
|
||||||
|
pass
|
||||||
|
|
||||||
|
def suppression_flux(self):
|
||||||
|
self.tableWidget_2.removeRow(self.tableWidget_2.currentRow())
|
||||||
|
|
||||||
|
def open_url(self, item):
|
||||||
|
url = item.data(Qt.UserRole)
|
||||||
|
|
||||||
|
def initialisation_flux(self):
|
||||||
|
if dbtype == sigdb:
|
||||||
|
if self.comboBox.currentText() == 'toutes les catégories':
|
||||||
|
custom_list=schemaname_list
|
||||||
|
elif self.comboBox.currentText() == 'travaux':
|
||||||
|
custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables
|
||||||
|
where schemaname like '"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;"""
|
||||||
|
else:
|
||||||
|
custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables
|
||||||
|
where schemaname like '\_"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '\_"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;"""
|
||||||
|
else:
|
||||||
|
if self.comboBox.currentText() == 'toutes les catégories':
|
||||||
|
custom_list=schemaname_list_ref
|
||||||
|
else:
|
||||||
|
custom_list="""SELECT schemaname,tablename from pg_catalog.pg_tables
|
||||||
|
where schemaname like '"""+ str(self.comboBox.currentText()) +"""' order by schemaname,tablename;"""
|
||||||
|
cur.execute(custom_list)
|
||||||
|
list_schema = cur.fetchall()
|
||||||
|
|
||||||
|
self.tableWidget.setRowCount(len(list_schema))
|
||||||
|
self.tableWidget.setColumnCount(3)
|
||||||
|
i=0
|
||||||
|
for value in list_schema:
|
||||||
|
if dbtype == sigdb:
|
||||||
|
type_val = str(value[0])[1:3]
|
||||||
|
schema_name=str(value[0])[4:]
|
||||||
|
table_name=str(value[1])
|
||||||
|
else:
|
||||||
|
type_val = ''
|
||||||
|
schema_name=str(value[0])
|
||||||
|
table_name=str(value[1])
|
||||||
|
if type_val == 'fo':
|
||||||
|
type_val=str(value[0])[1:5]
|
||||||
|
schema_name=str(value[0])[6:]
|
||||||
|
table_name=str(value[1])
|
||||||
|
elif type_val == 'ra':
|
||||||
|
type_val='travaux'
|
||||||
|
schema_name=str(value[0])
|
||||||
|
table_name=str(value[1])
|
||||||
|
elif type_val != '00' and type_val != '01' and type_val != '07' and type_val != '26' and type_val != '42' and type_val != '69' and type_val != 'ra':
|
||||||
|
type_val='agregation'
|
||||||
|
schema_name=str(value[0])
|
||||||
|
table_name=str(value[1])
|
||||||
|
|
||||||
|
item = QTableWidgetItem(type_val)
|
||||||
|
self.tableWidget.setItem(i,0,item)
|
||||||
|
item = QTableWidgetItem(schema_name)
|
||||||
|
self.tableWidget.setItem(i,1,item)
|
||||||
|
item = QTableWidgetItem(table_name)
|
||||||
|
self.tableWidget.setItem(i,2,item)
|
||||||
|
i=i+1
|
||||||
|
self.tableWidget.setColumnWidth(0, 20)
|
||||||
|
self.tableWidget.setColumnWidth(1, 300)
|
||||||
|
self.tableWidget.setColumnWidth(2, 300)
|
||||||
|
self.tableWidget.setHorizontalHeaderLabels(["Code","Schema","Table"])
|
||||||
|
def selection_flux(self):
|
||||||
|
selected_row = 0
|
||||||
|
selected_items = self.tableWidget.selectedItems()
|
||||||
|
|
||||||
|
# Assuming you want to compare items in the first column for uniqueness
|
||||||
|
new_item_text = selected_items[2].text()
|
||||||
|
|
||||||
|
if not self.item_already_exists(new_item_text):
|
||||||
|
self.tableWidget_2.insertRow(selected_row)
|
||||||
|
|
||||||
|
for column in range(self.tableWidget.columnCount()):
|
||||||
|
cloned_item = selected_items[column].clone()
|
||||||
|
self.tableWidget_2.setHorizontalHeaderLabels(["Code","Schema", "Table"])
|
||||||
|
self.tableWidget_2.setColumnCount(3)
|
||||||
|
self.tableWidget_2.setItem(selected_row, column, cloned_item)
|
||||||
|
|
||||||
|
self.tableWidget_2.setColumnWidth(0, 50)
|
||||||
|
self.tableWidget_2.setColumnWidth(1, 300)
|
||||||
|
self.tableWidget_2.setColumnWidth(2, 300)
|
||||||
|
|
||||||
|
|
||||||
|
def item_already_exists(self, new_item_text):
|
||||||
|
# Assuming you want to compare items in the first column for uniqueness
|
||||||
|
existing_items = self.tableWidget_2.findItems(new_item_text, QtCore.Qt.MatchExactly)
|
||||||
|
|
||||||
|
# Check if there are any existing items with the same text in the first column
|
||||||
|
return len(existing_items) > 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def limite_flux(self):
|
||||||
|
|
||||||
|
if self.tableWidget_2.rowCount() > 3:
|
||||||
|
self.QMBquestion = QMessageBox.question(iface.mainWindow(), u"Attention !",
|
||||||
|
"Le nombre de flux à charger en une seule fois est limité à 3 pour des questions de performances. Souhaitez vous tout de même charger les " + str(
|
||||||
|
self.tableWidget_2.rowCount()) + " flux sélectionnés ? (risque de plantage de QGIS)",
|
||||||
|
QMessageBox.Yes | QMessageBox.No)
|
||||||
|
if self.QMBquestion == QMessageBox.Yes:
|
||||||
|
self.chargement_flux()
|
||||||
|
|
||||||
|
if self.QMBquestion == QMessageBox.No:
|
||||||
|
print("Annulation du chargement des couches")
|
||||||
|
|
||||||
|
if self.tableWidget_2.rowCount() <= 3:
|
||||||
|
self.chargement_flux()
|
||||||
|
|
||||||
|
def chargement_flux(self):
|
||||||
|
|
||||||
|
managerAU = QgsApplication.authManager()
|
||||||
|
k = managerAU.availableAuthMethodConfigs().keys()
|
||||||
|
|
||||||
|
def REQUEST(type):
|
||||||
|
switcher = {
|
||||||
|
'WFS': "GetFeature",
|
||||||
|
'WMS': "GetMap",
|
||||||
|
'WMS+Vecteur': "GetMap",
|
||||||
|
'WMS+Raster': "GetMap",
|
||||||
|
'WMTS': "GetMap"
|
||||||
|
}
|
||||||
|
return switcher.get(type, "nothing")
|
||||||
|
|
||||||
|
|
||||||
|
def displayOnWindows(type, uri, name):
|
||||||
|
p = []
|
||||||
|
|
||||||
|
for row in range(0, self.tableWidget_2.rowCount()):
|
||||||
|
## supression de la partie de l'url après le point d'interrogation
|
||||||
|
if dbtype == sigdb:
|
||||||
|
code = self.tableWidget_2.item(row,0).text()
|
||||||
|
schema = '_'+code+'_'+self.tableWidget_2.item(row,1).text()
|
||||||
|
if code == 'travaux' or code == 'agregation':
|
||||||
|
schema = self.tableWidget_2.item(row,1).text()
|
||||||
|
table = self.tableWidget_2.item(row,2).text()#.split("?", 1)[0]
|
||||||
|
if dbtype == refdb:
|
||||||
|
# code = self.tableWidget_2.item(row,0).text()
|
||||||
|
schema = self.tableWidget_2.item(row,1).text()
|
||||||
|
table = self.tableWidget_2.item(row,2).text()#.split("?", 1)[0]
|
||||||
|
uri = QgsDataSourceUri()
|
||||||
|
uri.setConnection(host ,port ,dbtype ,user ,mdp)
|
||||||
|
|
||||||
|
# nom du schéma à remplacer: "hydrographie" à supprimer et mettre "couches_collaboratives" lorsqu'on aura regroupé les couches à modifier dans un même schéma
|
||||||
|
|
||||||
|
uri.setDataSource(schema, table, "geom")
|
||||||
|
uri.setKeyColumn('gid')
|
||||||
|
|
||||||
|
# Chargement de la couche PostGIS
|
||||||
|
geom_type ='SELECT right(st_geometrytype(geom),-3) as a FROM '+schema+'.'+table+' GROUP BY a'
|
||||||
|
cur.execute(geom_type)
|
||||||
|
list_typegeom = cur.fetchall()
|
||||||
|
print(len(list_typegeom))
|
||||||
|
if len(list_typegeom) > 1:
|
||||||
|
for typegeom in list_typegeom:
|
||||||
|
if typegeom[0] == 'MultiPolygon':
|
||||||
|
uri.setWkbType(QgsWkbTypes.MultiPolygon)
|
||||||
|
elif typegeom[0] == 'MultiLineString':
|
||||||
|
uri.setWkbType(QgsWkbTypes.MultiLineString)
|
||||||
|
elif typegeom[0] == 'Point':
|
||||||
|
uri.setWkbType(QgsWkbTypes.Point)
|
||||||
|
if typegeom[0] == 'Polygon':
|
||||||
|
uri.setWkbType(QgsWkbTypes.Polygon)
|
||||||
|
elif typegeom[0] == 'LineString':
|
||||||
|
uri.setWkbType(QgsWkbTypes.LineString)
|
||||||
|
elif typegeom[0] == 'MultiPoint':
|
||||||
|
uri.setWkbType(QgsWkbTypes.MultiPoint)
|
||||||
|
if (typegeom[0] != None and typegeom[0] != 'Polygon'):
|
||||||
|
uri.setSrid('2154')
|
||||||
|
layer = QgsVectorLayer(uri.uri(), table, "postgres")
|
||||||
|
# Ajout de la couche au canevas QGIS
|
||||||
|
QgsProject.instance().addMapLayer(layer)
|
||||||
|
else:
|
||||||
|
layer = QgsVectorLayer(uri.uri(), table, "postgres")
|
||||||
|
# Ajout de la couche au canevas QGIS
|
||||||
|
QgsProject.instance().addMapLayer(layer)
|
||||||
|
|
||||||
|
def combobox_custom(self):
|
||||||
|
if dbtype == sigdb:
|
||||||
|
self.comboBox.clear()
|
||||||
|
self.comboBox.addItem("toutes les catégories")
|
||||||
|
self.comboBox.addItem('00')
|
||||||
|
self.comboBox.addItem('01')
|
||||||
|
self.comboBox.addItem('07')
|
||||||
|
self.comboBox.addItem('26')
|
||||||
|
self.comboBox.addItem('42')
|
||||||
|
self.comboBox.addItem('69')
|
||||||
|
self.comboBox.addItem('agregation')
|
||||||
|
self.comboBox.addItem('travaux')
|
||||||
|
self.comboBox.addItem('form')
|
||||||
|
if dbtype == refdb:
|
||||||
|
custom_list=schemaname_distinct
|
||||||
|
cur.execute(custom_list)
|
||||||
|
list_schema = cur.fetchall()
|
||||||
|
self.comboBox.clear()
|
||||||
|
self.comboBox.addItem("toutes les catégories")
|
||||||
|
for baxval in list_schema:
|
||||||
|
self.comboBox.addItem(baxval[0])
|
||||||
|
def filtre_dynamique(self, filter_text):
|
||||||
|
|
||||||
|
for i in range(self.tableWidget.rowCount()):
|
||||||
|
for j in range(self.tableWidget.columnCount()):
|
||||||
|
item = self.tableWidget.item(i, j)
|
||||||
|
match = filter_text.lower() not in item.text().lower()
|
||||||
|
self.tableWidget.setRowHidden(i, match)
|
||||||
|
if not match:
|
||||||
|
break
|
||||||
|
|
||||||
|
def popup(self):
|
||||||
|
|
||||||
|
self.dialog = Popup() # +++ - self
|
||||||
|
self.dialog.text_edit.show()
|
||||||
@ -1,130 +0,0 @@
|
|||||||
# Makefile for Sphinx documentation
|
|
||||||
#
|
|
||||||
|
|
||||||
# You can set these variables from the command line.
|
|
||||||
SPHINXOPTS =
|
|
||||||
SPHINXBUILD = sphinx-build
|
|
||||||
PAPER =
|
|
||||||
BUILDDIR = build
|
|
||||||
|
|
||||||
# Internal variables.
|
|
||||||
PAPEROPT_a4 = -D latex_paper_size=a4
|
|
||||||
PAPEROPT_letter = -D latex_paper_size=letter
|
|
||||||
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
|
|
||||||
|
|
||||||
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
|
|
||||||
|
|
||||||
help:
|
|
||||||
@echo "Please use \`make <target>' where <target> is one of"
|
|
||||||
@echo " html to make standalone HTML files"
|
|
||||||
@echo " dirhtml to make HTML files named index.html in directories"
|
|
||||||
@echo " singlehtml to make a single large HTML file"
|
|
||||||
@echo " pickle to make pickle files"
|
|
||||||
@echo " json to make JSON files"
|
|
||||||
@echo " htmlhelp to make HTML files and a HTML help project"
|
|
||||||
@echo " qthelp to make HTML files and a qthelp project"
|
|
||||||
@echo " devhelp to make HTML files and a Devhelp project"
|
|
||||||
@echo " epub to make an epub"
|
|
||||||
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
|
|
||||||
@echo " latexpdf to make LaTeX files and run them through pdflatex"
|
|
||||||
@echo " text to make text files"
|
|
||||||
@echo " man to make manual pages"
|
|
||||||
@echo " changes to make an overview of all changed/added/deprecated items"
|
|
||||||
@echo " linkcheck to check all external links for integrity"
|
|
||||||
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
|
|
||||||
|
|
||||||
clean:
|
|
||||||
-rm -rf $(BUILDDIR)/*
|
|
||||||
|
|
||||||
html:
|
|
||||||
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
|
||||||
@echo
|
|
||||||
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
|
|
||||||
|
|
||||||
dirhtml:
|
|
||||||
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
|
|
||||||
@echo
|
|
||||||
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
|
|
||||||
|
|
||||||
singlehtml:
|
|
||||||
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
|
|
||||||
@echo
|
|
||||||
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
|
|
||||||
|
|
||||||
pickle:
|
|
||||||
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
|
|
||||||
@echo
|
|
||||||
@echo "Build finished; now you can process the pickle files."
|
|
||||||
|
|
||||||
json:
|
|
||||||
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
|
|
||||||
@echo
|
|
||||||
@echo "Build finished; now you can process the JSON files."
|
|
||||||
|
|
||||||
htmlhelp:
|
|
||||||
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
|
|
||||||
@echo
|
|
||||||
@echo "Build finished; now you can run HTML Help Workshop with the" \
|
|
||||||
".hhp project file in $(BUILDDIR)/htmlhelp."
|
|
||||||
|
|
||||||
qthelp:
|
|
||||||
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
|
|
||||||
@echo
|
|
||||||
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
|
|
||||||
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
|
|
||||||
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/template_class.qhcp"
|
|
||||||
@echo "To view the help file:"
|
|
||||||
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/template_class.qhc"
|
|
||||||
|
|
||||||
devhelp:
|
|
||||||
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
|
|
||||||
@echo
|
|
||||||
@echo "Build finished."
|
|
||||||
@echo "To view the help file:"
|
|
||||||
@echo "# mkdir -p $$HOME/.local/share/devhelp/template_class"
|
|
||||||
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/template_class"
|
|
||||||
@echo "# devhelp"
|
|
||||||
|
|
||||||
epub:
|
|
||||||
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
|
|
||||||
@echo
|
|
||||||
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
|
|
||||||
|
|
||||||
latex:
|
|
||||||
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
|
|
||||||
@echo
|
|
||||||
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
|
|
||||||
@echo "Run \`make' in that directory to run these through (pdf)latex" \
|
|
||||||
"(use \`make latexpdf' here to do that automatically)."
|
|
||||||
|
|
||||||
latexpdf:
|
|
||||||
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
|
|
||||||
@echo "Running LaTeX files through pdflatex..."
|
|
||||||
make -C $(BUILDDIR)/latex all-pdf
|
|
||||||
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
|
|
||||||
|
|
||||||
text:
|
|
||||||
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
|
|
||||||
@echo
|
|
||||||
@echo "Build finished. The text files are in $(BUILDDIR)/text."
|
|
||||||
|
|
||||||
man:
|
|
||||||
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
|
|
||||||
@echo
|
|
||||||
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
|
|
||||||
|
|
||||||
changes:
|
|
||||||
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
|
|
||||||
@echo
|
|
||||||
@echo "The overview file is in $(BUILDDIR)/changes."
|
|
||||||
|
|
||||||
linkcheck:
|
|
||||||
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
|
|
||||||
@echo
|
|
||||||
@echo "Link check complete; look for any errors in the above output " \
|
|
||||||
"or in $(BUILDDIR)/linkcheck/output.txt."
|
|
||||||
|
|
||||||
doctest:
|
|
||||||
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
|
|
||||||
@echo "Testing of doctests in the sources finished, look at the " \
|
|
||||||
"results in $(BUILDDIR)/doctest/output.txt."
|
|
||||||
@ -1,155 +0,0 @@
|
|||||||
@ECHO OFF
|
|
||||||
|
|
||||||
REM Command file for Sphinx documentation
|
|
||||||
|
|
||||||
if "%SPHINXBUILD%" == "" (
|
|
||||||
set SPHINXBUILD=sphinx-build
|
|
||||||
)
|
|
||||||
set BUILDDIR=build
|
|
||||||
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
|
|
||||||
if NOT "%PAPER%" == "" (
|
|
||||||
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "" goto help
|
|
||||||
|
|
||||||
if "%1" == "help" (
|
|
||||||
:help
|
|
||||||
echo.Please use `make ^<target^>` where ^<target^> is one of
|
|
||||||
echo. html to make standalone HTML files
|
|
||||||
echo. dirhtml to make HTML files named index.html in directories
|
|
||||||
echo. singlehtml to make a single large HTML file
|
|
||||||
echo. pickle to make pickle files
|
|
||||||
echo. json to make JSON files
|
|
||||||
echo. htmlhelp to make HTML files and a HTML help project
|
|
||||||
echo. qthelp to make HTML files and a qthelp project
|
|
||||||
echo. devhelp to make HTML files and a Devhelp project
|
|
||||||
echo. epub to make an epub
|
|
||||||
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
|
|
||||||
echo. text to make text files
|
|
||||||
echo. man to make manual pages
|
|
||||||
echo. changes to make an overview over all changed/added/deprecated items
|
|
||||||
echo. linkcheck to check all external links for integrity
|
|
||||||
echo. doctest to run all doctests embedded in the documentation if enabled
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "clean" (
|
|
||||||
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
|
|
||||||
del /q /s %BUILDDIR%\*
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "html" (
|
|
||||||
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
|
|
||||||
echo.
|
|
||||||
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "dirhtml" (
|
|
||||||
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
|
|
||||||
echo.
|
|
||||||
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "singlehtml" (
|
|
||||||
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
|
|
||||||
echo.
|
|
||||||
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "pickle" (
|
|
||||||
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
|
|
||||||
echo.
|
|
||||||
echo.Build finished; now you can process the pickle files.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "json" (
|
|
||||||
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
|
|
||||||
echo.
|
|
||||||
echo.Build finished; now you can process the JSON files.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "htmlhelp" (
|
|
||||||
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
|
|
||||||
echo.
|
|
||||||
echo.Build finished; now you can run HTML Help Workshop with the ^
|
|
||||||
.hhp project file in %BUILDDIR%/htmlhelp.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "qthelp" (
|
|
||||||
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
|
|
||||||
echo.
|
|
||||||
echo.Build finished; now you can run "qcollectiongenerator" with the ^
|
|
||||||
.qhcp project file in %BUILDDIR%/qthelp, like this:
|
|
||||||
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\template_class.qhcp
|
|
||||||
echo.To view the help file:
|
|
||||||
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\template_class.ghc
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "devhelp" (
|
|
||||||
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
|
|
||||||
echo.
|
|
||||||
echo.Build finished.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "epub" (
|
|
||||||
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
|
|
||||||
echo.
|
|
||||||
echo.Build finished. The epub file is in %BUILDDIR%/epub.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "latex" (
|
|
||||||
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
|
|
||||||
echo.
|
|
||||||
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "text" (
|
|
||||||
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
|
|
||||||
echo.
|
|
||||||
echo.Build finished. The text files are in %BUILDDIR%/text.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "man" (
|
|
||||||
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
|
|
||||||
echo.
|
|
||||||
echo.Build finished. The manual pages are in %BUILDDIR%/man.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "changes" (
|
|
||||||
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
|
|
||||||
echo.
|
|
||||||
echo.The overview file is in %BUILDDIR%/changes.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "linkcheck" (
|
|
||||||
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
|
|
||||||
echo.
|
|
||||||
echo.Link check complete; look for any errors in the above output ^
|
|
||||||
or in %BUILDDIR%/linkcheck/output.txt.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "doctest" (
|
|
||||||
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
|
|
||||||
echo.
|
|
||||||
echo.Testing of doctests in the sources finished, look at the ^
|
|
||||||
results in %BUILDDIR%/doctest/output.txt.
|
|
||||||
goto end
|
|
||||||
)
|
|
||||||
|
|
||||||
:end
|
|
||||||
@ -1,216 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
#
|
|
||||||
# FluxCEN documentation build configuration file, created by
|
|
||||||
# sphinx-quickstart on Sun Feb 12 17:11:03 2012.
|
|
||||||
#
|
|
||||||
# This file is execfile()d with the current directory set to its containing dir.
|
|
||||||
#
|
|
||||||
# Note that not all possible configuration values are present in this
|
|
||||||
# autogenerated file.
|
|
||||||
#
|
|
||||||
# All configuration values have a default; values that are commented out
|
|
||||||
# serve to show the default.
|
|
||||||
|
|
||||||
import sys, os
|
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
||||||
#sys.path.insert(0, os.path.abspath('.'))
|
|
||||||
|
|
||||||
# -- General configuration -----------------------------------------------------
|
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
|
||||||
#needs_sphinx = '1.0'
|
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be extensions
|
|
||||||
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
|
||||||
extensions = ['sphinx.ext.todo', 'sphinx.ext.imgmath', 'sphinx.ext.viewcode']
|
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
|
||||||
templates_path = ['_templates']
|
|
||||||
|
|
||||||
# The suffix of source filenames.
|
|
||||||
source_suffix = '.rst'
|
|
||||||
|
|
||||||
# The encoding of source files.
|
|
||||||
#source_encoding = 'utf-8-sig'
|
|
||||||
|
|
||||||
# The master toctree document.
|
|
||||||
master_doc = 'index'
|
|
||||||
|
|
||||||
# General information about the project.
|
|
||||||
project = u'FluxCEN'
|
|
||||||
copyright = u'2013, Romain Montillet'
|
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
|
||||||
# |version| and |release|, also used in various other places throughout the
|
|
||||||
# built documents.
|
|
||||||
#
|
|
||||||
# The short X.Y version.
|
|
||||||
version = '0.1'
|
|
||||||
# The full version, including alpha/beta/rc tags.
|
|
||||||
release = '0.1'
|
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
||||||
# for a list of supported languages.
|
|
||||||
#language = None
|
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
|
||||||
# non-false value, then it is used:
|
|
||||||
#today = ''
|
|
||||||
# Else, today_fmt is used as the format for a strftime call.
|
|
||||||
#today_fmt = '%B %d, %Y'
|
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
|
||||||
# directories to ignore when looking for source files.
|
|
||||||
exclude_patterns = []
|
|
||||||
|
|
||||||
# The reST default role (used for this markup: `text`) to use for all documents.
|
|
||||||
#default_role = None
|
|
||||||
|
|
||||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
|
||||||
#add_function_parentheses = True
|
|
||||||
|
|
||||||
# If true, the current module name will be prepended to all description
|
|
||||||
# unit titles (such as .. function::).
|
|
||||||
#add_TemplateModuleNames = True
|
|
||||||
|
|
||||||
# If true, sectionauthor and moduleauthor directives will be shown in the
|
|
||||||
# output. They are ignored by default.
|
|
||||||
#show_authors = False
|
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
|
||||||
pygments_style = 'sphinx'
|
|
||||||
|
|
||||||
# A list of ignored prefixes for module index sorting.
|
|
||||||
#modindex_common_prefix = []
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTML output ---------------------------------------------------
|
|
||||||
|
|
||||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
||||||
# a list of builtin themes.
|
|
||||||
html_theme = 'default'
|
|
||||||
|
|
||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
|
||||||
# further. For a list of options available for each theme, see the
|
|
||||||
# documentation.
|
|
||||||
#html_theme_options = {}
|
|
||||||
|
|
||||||
# Add any paths that contain custom themes here, relative to this directory.
|
|
||||||
#html_theme_path = []
|
|
||||||
|
|
||||||
# The name for this set of Sphinx documents. If None, it defaults to
|
|
||||||
# "<project> v<release> documentation".
|
|
||||||
#html_title = None
|
|
||||||
|
|
||||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
|
||||||
#html_short_title = None
|
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top
|
|
||||||
# of the sidebar.
|
|
||||||
#html_logo = None
|
|
||||||
|
|
||||||
# The name of an image file (within the static path) to use as favicon of the
|
|
||||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
||||||
# pixels large.
|
|
||||||
#html_favicon = None
|
|
||||||
|
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
|
||||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
||||||
html_static_path = ['_static']
|
|
||||||
|
|
||||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
||||||
# using the given strftime format.
|
|
||||||
#html_last_updated_fmt = '%b %d, %Y'
|
|
||||||
|
|
||||||
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
||||||
# typographically correct entities.
|
|
||||||
#html_use_smartypants = True
|
|
||||||
|
|
||||||
# Custom sidebar templates, maps document names to template names.
|
|
||||||
#html_sidebars = {}
|
|
||||||
|
|
||||||
# Additional templates that should be rendered to pages, maps page names to
|
|
||||||
# template names.
|
|
||||||
#html_additional_pages = {}
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
#html_domain_indices = True
|
|
||||||
|
|
||||||
# If false, no index is generated.
|
|
||||||
#html_use_index = True
|
|
||||||
|
|
||||||
# If true, the index is split into individual pages for each letter.
|
|
||||||
#html_split_index = False
|
|
||||||
|
|
||||||
# If true, links to the reST sources are added to the pages.
|
|
||||||
#html_show_sourcelink = True
|
|
||||||
|
|
||||||
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
|
||||||
#html_show_sphinx = True
|
|
||||||
|
|
||||||
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
|
||||||
#html_show_copyright = True
|
|
||||||
|
|
||||||
# If true, an OpenSearch description file will be output, and all pages will
|
|
||||||
# contain a <link> tag referring to it. The value of this option must be the
|
|
||||||
# base URL from which the finished HTML is served.
|
|
||||||
#html_use_opensearch = ''
|
|
||||||
|
|
||||||
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
|
||||||
#html_file_suffix = None
|
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
|
||||||
htmlhelp_basename = 'TemplateClassdoc'
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for LaTeX output --------------------------------------------------
|
|
||||||
|
|
||||||
# The paper size ('letter' or 'a4').
|
|
||||||
#latex_paper_size = 'letter'
|
|
||||||
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
|
||||||
#latex_font_size = '10pt'
|
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
|
||||||
# (source start file, target name, title, author, documentclass [howto/manual]).
|
|
||||||
latex_documents = [
|
|
||||||
('index', 'FluxCEN.tex', u'FluxCEN Documentation',
|
|
||||||
u'Romain Montillet', 'manual'),
|
|
||||||
]
|
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top of
|
|
||||||
# the title page.
|
|
||||||
#latex_logo = None
|
|
||||||
|
|
||||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
||||||
# not chapters.
|
|
||||||
#latex_use_parts = False
|
|
||||||
|
|
||||||
# If true, show page references after internal links.
|
|
||||||
#latex_show_pagerefs = False
|
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
|
||||||
#latex_show_urls = False
|
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
|
||||||
#latex_preamble = ''
|
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
|
||||||
#latex_appendices = []
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
#latex_domain_indices = True
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output --------------------------------------------
|
|
||||||
|
|
||||||
# One entry per manual page. List of tuples
|
|
||||||
# (source start file, name, description, authors, manual section).
|
|
||||||
man_pages = [
|
|
||||||
('index', 'TemplateClass', u'FluxCEN Documentation',
|
|
||||||
[u'Romain Montillet'], 1)
|
|
||||||
]
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
.. FluxCEN documentation master file, created by
|
|
||||||
sphinx-quickstart on Sun Feb 12 17:11:03 2012.
|
|
||||||
You can adapt this file completely to your liking, but it should at least
|
|
||||||
contain the root `toctree` directive.
|
|
||||||
|
|
||||||
Welcome to FluxCEN's documentation!
|
|
||||||
============================================
|
|
||||||
|
|
||||||
Contents:
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 2
|
|
||||||
|
|
||||||
Indices and tables
|
|
||||||
==================
|
|
||||||
|
|
||||||
* :ref:`genindex`
|
|
||||||
* :ref:`modindex`
|
|
||||||
* :ref:`search`
|
|
||||||
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!DOCTYPE TS><TS version="2.0" language="af" sourcelanguage="en">
|
|
||||||
<context>
|
|
||||||
<name>@default</name>
|
|
||||||
<message>
|
|
||||||
<location filename="test_translations.py" line="48"/>
|
|
||||||
<source>Good morning</source>
|
|
||||||
<translation>Goeie more</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
</TS>
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 14 KiB |
88
CenRa_FLUX/issues.py
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
import os
|
||||||
|
plugin_dir = os.path.dirname(__file__)
|
||||||
|
end_find = plugin_dir.rfind('\\')+1
|
||||||
|
|
||||||
|
NAME = plugin_dir[end_find:]
|
||||||
|
|
||||||
|
from qgis.gui import *
|
||||||
|
|
||||||
|
from qgis.core import (
|
||||||
|
NULL,
|
||||||
|
QgsApplication,
|
||||||
|
QgsDataSourceUri,
|
||||||
|
QgsProject,
|
||||||
|
QgsProviderConnectionException,
|
||||||
|
QgsProviderRegistry,
|
||||||
|
QgsRasterLayer,
|
||||||
|
QgsSettings,
|
||||||
|
QgsVectorLayer,
|
||||||
|
QgsGeometry,
|
||||||
|
)
|
||||||
|
from qgis.PyQt.QtWidgets import (
|
||||||
|
QDialog,
|
||||||
|
QAction,
|
||||||
|
QDockWidget,
|
||||||
|
QFileDialog,
|
||||||
|
QInputDialog,
|
||||||
|
QMenu,
|
||||||
|
QToolButton,
|
||||||
|
QTableWidget,
|
||||||
|
QTableWidgetItem,
|
||||||
|
)
|
||||||
|
from qgis.utils import iface
|
||||||
|
|
||||||
|
|
||||||
|
from .tools.resources import (
|
||||||
|
load_ui,
|
||||||
|
resources_path,
|
||||||
|
send_issues,
|
||||||
|
)
|
||||||
|
|
||||||
|
EDITOR_CLASS = load_ui('CenRa_IssuesSend.ui')
|
||||||
|
|
||||||
|
class CenRa_Issues(QDialog, EDITOR_CLASS):
|
||||||
|
|
||||||
|
def __init__(self, parent=None):
|
||||||
|
_ = parent
|
||||||
|
super().__init__()
|
||||||
|
self.setupUi(self)
|
||||||
|
self.settings = QgsSettings()
|
||||||
|
|
||||||
|
#place connect here
|
||||||
|
self.annuler_button.clicked.connect(self.close)
|
||||||
|
self.ok_button.clicked.connect(self.run_sendissues)
|
||||||
|
|
||||||
|
def run_sendissues(self):
|
||||||
|
text_titre = self.titre_line.text()
|
||||||
|
text_message = self.messages_plain.toPlainText()
|
||||||
|
statu_bug = self.check_bug.isChecked()
|
||||||
|
statu_aide = self.check_aide.isChecked()
|
||||||
|
statu_question = self.check_question.isChecked()
|
||||||
|
statu_amelioration = self.check_amelioration.isChecked()
|
||||||
|
statu_autre = self.check_autre.isChecked()
|
||||||
|
|
||||||
|
statu = []
|
||||||
|
if statu_bug == True : statu = statu + [1]
|
||||||
|
if statu_aide == True : statu = statu + [3]
|
||||||
|
if statu_question == True : statu = statu + [5]
|
||||||
|
if statu_amelioration == True : statu = statu + [2]
|
||||||
|
if statu_autre == True : statu = statu + [6]
|
||||||
|
|
||||||
|
if len(statu) >= 1:
|
||||||
|
import qgis
|
||||||
|
url = qgis.utils.pluginMetadata(NAME,'tracker')
|
||||||
|
print(text_message)
|
||||||
|
send_info = send_issues(url,text_titre,text_message,statu)
|
||||||
|
code = send_info.status_code
|
||||||
|
print(code)
|
||||||
|
else:
|
||||||
|
code = 423
|
||||||
|
if code == 201:
|
||||||
|
iface.messageBar().pushMessage("Envoyer :", "Votre messages à bien été envoyer.", level=Qgis.Success, duration=20)
|
||||||
|
self.close()
|
||||||
|
elif code == 422:
|
||||||
|
iface.messageBar().pushMessage("Erreur :", "Erreur dans le contenu du messages.", level=Qgis.Critical, duration=20)
|
||||||
|
elif code == 423:
|
||||||
|
iface.messageBar().pushMessage("Erreur :", "Pas de sujet sélectionné.", level=Qgis.Critical, duration=20)
|
||||||
|
elif code == 404:
|
||||||
|
iface.messageBar().pushMessage("Missing :", "Le serveur de messagerie est injoignable.", level=Qgis.Warning, duration=20)
|
||||||
|
Before Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 218 KiB |
@ -6,7 +6,7 @@
|
|||||||
name=CenRa_FLUX
|
name=CenRa_FLUX
|
||||||
qgisMinimumVersion=3.0
|
qgisMinimumVersion=3.0
|
||||||
description=Permet d'ouvrire une table dans la base PostGis
|
description=Permet d'ouvrire une table dans la base PostGis
|
||||||
version=1.14
|
version=2.0
|
||||||
author=Conservatoire d'Espaces Naturels de Rhône-Alpes
|
author=Conservatoire d'Espaces Naturels de Rhône-Alpes
|
||||||
email=si_besoin@cen-rhonealpes.fr
|
email=si_besoin@cen-rhonealpes.fr
|
||||||
|
|
||||||
@ -28,11 +28,11 @@ homepage=https://plateformesig.cenra-outils.org/
|
|||||||
tracker=https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS
|
tracker=https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS
|
||||||
|
|
||||||
category=Plugins
|
category=Plugins
|
||||||
icon=cenra.png
|
icon=icon.png
|
||||||
# experimental flag
|
# experimental flag
|
||||||
experimental=False
|
experimental=False
|
||||||
|
|
||||||
changelog=<h1>CenRA_FLUX:</h1></br><p><h3>03/10/2024 - Version 1.14:</h3> - Remonte la fênetre dans la pille.</br></p><p><h3>13/09/2024 - Version 1.13:</h3>- MAJ sur le lien du changelog</br>- Bug-fix: Ouvre MultiPolygone et Polygon séparément.</p></br><p><h3>10/09/2024 - Version 1.11:</h3>- Ouverture de table contenant plusieurs géométries.</p></br><p><h3>26/08/2024 - Version 1.10:</h3>- Ajoute d'un changelog et vérification de mise à jour.</p>
|
changelog=<h1>CenRA_FLUX:</h1></br><p><h3>22/10/2024 - Version 2.0:</h3> - Reformatage du code.</br></p></br><p><h3>03/10/2024 - Version 1.14:</h3> - Remonte la fênetre dans la pille.</br></p><p><h3>13/09/2024 - Version 1.13:</h3>- MAJ sur le lien du changelog</br>- Bug-fix: Ouvre MultiPolygone et Polygon séparément.</p></br><p><h3>10/09/2024 - Version 1.11:</h3>- Ouverture de table contenant plusieurs géométries.</p></br><p><h3>26/08/2024 - Version 1.10:</h3>- Ajoute d'un changelog et vérification de mise à jour.</p>
|
||||||
|
|
||||||
# deprecated flag (applies to the whole plugin, not just a single version)
|
# deprecated flag (applies to the whole plugin, not just a single version)
|
||||||
deprecated=False
|
deprecated=False
|
||||||
|
|||||||
@ -1,57 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
height: 100vh;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-container {
|
|
||||||
margin-right: 20px; /* Adjust as needed */
|
|
||||||
height: 300px; /* Set the desired fixed height */
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
font-size: 24px;
|
|
||||||
color: black;
|
|
||||||
text-align: right;
|
|
||||||
position: absolute;
|
|
||||||
top: 72%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
max-width: 100%;
|
|
||||||
max-height: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<title>No Metadata</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="content">
|
|
||||||
<div class="image-container">
|
|
||||||
<img src="https://raw.githubusercontent.com/CEN-Nouvelle-Aquitaine/fluxcen/main/confused_travolta.gif" alt="Another Image">
|
|
||||||
</div>
|
|
||||||
<div class="image-container">
|
|
||||||
<img src="https://raw.githubusercontent.com/CEN-Nouvelle-Aquitaine/fluxcen/main/metadata.png" alt="Metadata Image">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p>Pas de métadonnées encore associées à cette ressource ! Revenez plus tard 😎</p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,80 +0,0 @@
|
|||||||
#/***************************************************************************
|
|
||||||
# FluxCEN
|
|
||||||
#
|
|
||||||
# Configuration file for plugin builder tool (pb_tool)
|
|
||||||
# Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
|
|
||||||
# -------------------
|
|
||||||
# begin : 2022-04-04
|
|
||||||
# copyright : (C) 2022 by Romain Montillet
|
|
||||||
# email : r.montillet@cen-na.org
|
|
||||||
# ***************************************************************************/
|
|
||||||
#
|
|
||||||
#/***************************************************************************
|
|
||||||
# * *
|
|
||||||
# * This program is free software; you can redistribute it and/or modify *
|
|
||||||
# * it under the terms of the GNU General Public License as published by *
|
|
||||||
# * the Free Software Foundation; either version 2 of the License, or *
|
|
||||||
# * (at your option) any later version. *
|
|
||||||
# * *
|
|
||||||
# ***************************************************************************/
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# You can install pb_tool using:
|
|
||||||
# pip install http://geoapt.net/files/pb_tool.zip
|
|
||||||
#
|
|
||||||
# Consider doing your development (and install of pb_tool) in a virtualenv.
|
|
||||||
#
|
|
||||||
# For details on setting up and using pb_tool, see:
|
|
||||||
# http://g-sherman.github.io/plugin_build_tool/
|
|
||||||
#
|
|
||||||
# Issues and pull requests here:
|
|
||||||
# https://github.com/g-sherman/plugin_build_tool:
|
|
||||||
#
|
|
||||||
# Sane defaults for your plugin generated by the Plugin Builder are
|
|
||||||
# already set below.
|
|
||||||
#
|
|
||||||
# As you add Python source files and UI files to your plugin, add
|
|
||||||
# them to the appropriate [files] section below.
|
|
||||||
|
|
||||||
[plugin]
|
|
||||||
# Name of the plugin. This is the name of the directory that will
|
|
||||||
# be created in .qgis2/python/plugins
|
|
||||||
name: FluxCEN
|
|
||||||
|
|
||||||
# Full path to where you want your plugin directory copied. If empty,
|
|
||||||
# the QGIS default path will be used. Don't include the plugin name in
|
|
||||||
# the path.
|
|
||||||
plugin_path:
|
|
||||||
|
|
||||||
[files]
|
|
||||||
# Python files that should be deployed with the plugin
|
|
||||||
python_files: __init__.py FluxCEN.py FluxCEN_dialog.py
|
|
||||||
|
|
||||||
# The main dialog file that is loaded (not compiled)
|
|
||||||
main_dialog: FluxCEN_dialog_base.ui
|
|
||||||
|
|
||||||
# Other ui files for dialogs you create (these will be compiled)
|
|
||||||
compiled_ui_files:
|
|
||||||
|
|
||||||
# Resource file(s) that will be compiled
|
|
||||||
resource_files: resources.qrc
|
|
||||||
|
|
||||||
# Other files required for the plugin
|
|
||||||
extras: metadata.txt icon.png
|
|
||||||
|
|
||||||
# Other directories to be deployed with the plugin.
|
|
||||||
# These must be subdirectories under the plugin directory
|
|
||||||
extra_dirs:
|
|
||||||
|
|
||||||
# ISO code(s) for any locales (translations), separated by spaces.
|
|
||||||
# Corresponding .ts files must exist in the i18n directory
|
|
||||||
locales:
|
|
||||||
|
|
||||||
[help]
|
|
||||||
# the built help directory that should be deployed with the plugin
|
|
||||||
dir: help/build/html
|
|
||||||
# the name of the directory to target in the deployed plugin
|
|
||||||
target: help
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,111 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
# coding=utf-8
|
|
||||||
"""This script uploads a plugin package to the plugin repository.
|
|
||||||
Authors: A. Pasotti, V. Picavet
|
|
||||||
git sha : $TemplateVCSFormat
|
|
||||||
"""
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import getpass
|
|
||||||
import xmlrpc.client
|
|
||||||
from optparse import OptionParser
|
|
||||||
|
|
||||||
standard_library.install_aliases()
|
|
||||||
|
|
||||||
# Configuration
|
|
||||||
PROTOCOL = 'https'
|
|
||||||
SERVER = 'plugins.qgis.org'
|
|
||||||
PORT = '443'
|
|
||||||
ENDPOINT = '/plugins/RPC2/'
|
|
||||||
VERBOSE = False
|
|
||||||
|
|
||||||
|
|
||||||
def main(parameters, arguments):
|
|
||||||
"""Main entry point.
|
|
||||||
|
|
||||||
:param parameters: Command line parameters.
|
|
||||||
:param arguments: Command line arguments.
|
|
||||||
"""
|
|
||||||
address = "{protocol}://{username}:{password}@{server}:{port}{endpoint}".format(
|
|
||||||
protocol=PROTOCOL,
|
|
||||||
username=parameters.username,
|
|
||||||
password=parameters.password,
|
|
||||||
server=parameters.server,
|
|
||||||
port=parameters.port,
|
|
||||||
endpoint=ENDPOINT)
|
|
||||||
print("Connecting to: %s" % hide_password(address))
|
|
||||||
|
|
||||||
server = xmlrpc.client.ServerProxy(address, verbose=VERBOSE)
|
|
||||||
|
|
||||||
try:
|
|
||||||
with open(arguments[0], 'rb') as handle:
|
|
||||||
plugin_id, version_id = server.plugin.upload(
|
|
||||||
xmlrpc.client.Binary(handle.read()))
|
|
||||||
print("Plugin ID: %s" % plugin_id)
|
|
||||||
print("Version ID: %s" % version_id)
|
|
||||||
except xmlrpc.client.ProtocolError as err:
|
|
||||||
print("A protocol error occurred")
|
|
||||||
print("URL: %s" % hide_password(err.url, 0))
|
|
||||||
print("HTTP/HTTPS headers: %s" % err.headers)
|
|
||||||
print("Error code: %d" % err.errcode)
|
|
||||||
print("Error message: %s" % err.errmsg)
|
|
||||||
except xmlrpc.client.Fault as err:
|
|
||||||
print("A fault occurred")
|
|
||||||
print("Fault code: %d" % err.faultCode)
|
|
||||||
print("Fault string: %s" % err.faultString)
|
|
||||||
|
|
||||||
|
|
||||||
def hide_password(url, start=6):
|
|
||||||
"""Returns the http url with password part replaced with '*'.
|
|
||||||
|
|
||||||
:param url: URL to upload the plugin to.
|
|
||||||
:type url: str
|
|
||||||
|
|
||||||
:param start: Position of start of password.
|
|
||||||
:type start: int
|
|
||||||
"""
|
|
||||||
start_position = url.find(':', start) + 1
|
|
||||||
end_position = url.find('@')
|
|
||||||
return "%s%s%s" % (
|
|
||||||
url[:start_position],
|
|
||||||
'*' * (end_position - start_position),
|
|
||||||
url[end_position:])
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
parser = OptionParser(usage="%prog [options] plugin.zip")
|
|
||||||
parser.add_option(
|
|
||||||
"-w", "--password", dest="password",
|
|
||||||
help="Password for plugin site", metavar="******")
|
|
||||||
parser.add_option(
|
|
||||||
"-u", "--username", dest="username",
|
|
||||||
help="Username of plugin site", metavar="user")
|
|
||||||
parser.add_option(
|
|
||||||
"-p", "--port", dest="port",
|
|
||||||
help="Server port to connect to", metavar="80")
|
|
||||||
parser.add_option(
|
|
||||||
"-s", "--server", dest="server",
|
|
||||||
help="Specify server name", metavar="plugins.qgis.org")
|
|
||||||
options, args = parser.parse_args()
|
|
||||||
if len(args) != 1:
|
|
||||||
print("Please specify zip file.\n")
|
|
||||||
parser.print_help()
|
|
||||||
sys.exit(1)
|
|
||||||
if not options.server:
|
|
||||||
options.server = SERVER
|
|
||||||
if not options.port:
|
|
||||||
options.port = PORT
|
|
||||||
if not options.username:
|
|
||||||
# interactive mode
|
|
||||||
username = getpass.getuser()
|
|
||||||
print("Please enter user name [%s] :" % username, end=' ')
|
|
||||||
|
|
||||||
res = input()
|
|
||||||
if res != "":
|
|
||||||
options.username = res
|
|
||||||
else:
|
|
||||||
options.username = username
|
|
||||||
if not options.password:
|
|
||||||
# interactive mode
|
|
||||||
options.password = getpass.getpass()
|
|
||||||
main(options, args)
|
|
||||||
@ -1,281 +0,0 @@
|
|||||||
[MASTER]
|
|
||||||
|
|
||||||
# Specify a configuration file.
|
|
||||||
#rcfile=
|
|
||||||
|
|
||||||
# Python code to execute, usually for sys.path manipulation such as
|
|
||||||
# pygtk.require().
|
|
||||||
#init-hook=
|
|
||||||
|
|
||||||
# Profiled execution.
|
|
||||||
profile=no
|
|
||||||
|
|
||||||
# Add files or directories to the blacklist. They should be base names, not
|
|
||||||
# paths.
|
|
||||||
ignore=CVS
|
|
||||||
|
|
||||||
# Pickle collected data for later comparisons.
|
|
||||||
persistent=yes
|
|
||||||
|
|
||||||
# List of plugins (as comma separated values of python modules names) to load,
|
|
||||||
# usually to register additional checkers.
|
|
||||||
load-plugins=
|
|
||||||
|
|
||||||
|
|
||||||
[MESSAGES CONTROL]
|
|
||||||
|
|
||||||
# Enable the message, report, category or checker with the given id(s). You can
|
|
||||||
# either give multiple identifier separated by comma (,) or put this option
|
|
||||||
# multiple time. See also the "--disable" option for examples.
|
|
||||||
#enable=
|
|
||||||
|
|
||||||
# Disable the message, report, category or checker with the given id(s). You
|
|
||||||
# can either give multiple identifiers separated by comma (,) or put this
|
|
||||||
# option multiple times (only on the command line, not in the configuration
|
|
||||||
# file where it should appear only once).You can also use "--disable=all" to
|
|
||||||
# disable everything first and then reenable specific checks. For example, if
|
|
||||||
# you want to run only the similarities checker, you can use "--disable=all
|
|
||||||
# --enable=similarities". If you want to run only the classes checker, but have
|
|
||||||
# no Warning level messages displayed, use"--disable=all --enable=classes
|
|
||||||
# --disable=W"
|
|
||||||
# see http://stackoverflow.com/questions/21487025/pylint-locally-defined-disables-still-give-warnings-how-to-suppress-them
|
|
||||||
disable=locally-disabled,C0103
|
|
||||||
|
|
||||||
|
|
||||||
[REPORTS]
|
|
||||||
|
|
||||||
# Set the output format. Available formats are text, parseable, colorized, msvs
|
|
||||||
# (visual studio) and html. You can also give a reporter class, eg
|
|
||||||
# mypackage.mymodule.MyReporterClass.
|
|
||||||
output-format=text
|
|
||||||
|
|
||||||
# Put messages in a separate file for each module / package specified on the
|
|
||||||
# command line instead of printing them on stdout. Reports (if any) will be
|
|
||||||
# written in a file name "pylint_global.[txt|html]".
|
|
||||||
files-output=no
|
|
||||||
|
|
||||||
# Tells whether to display a full report or only the messages
|
|
||||||
reports=yes
|
|
||||||
|
|
||||||
# Python expression which should return a note less than 10 (10 is the highest
|
|
||||||
# note). You have access to the variables errors warning, statement which
|
|
||||||
# respectively contain the number of errors / warnings messages and the total
|
|
||||||
# number of statements analyzed. This is used by the global evaluation report
|
|
||||||
# (RP0004).
|
|
||||||
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
|
|
||||||
|
|
||||||
# Add a comment according to your evaluation note. This is used by the global
|
|
||||||
# evaluation report (RP0004).
|
|
||||||
comment=no
|
|
||||||
|
|
||||||
# Template used to display messages. This is a python new-style format string
|
|
||||||
# used to format the message information. See doc for all details
|
|
||||||
#msg-template=
|
|
||||||
|
|
||||||
|
|
||||||
[BASIC]
|
|
||||||
|
|
||||||
# Required attributes for module, separated by a comma
|
|
||||||
required-attributes=
|
|
||||||
|
|
||||||
# List of builtins function names that should not be used, separated by a comma
|
|
||||||
bad-functions=map,filter,apply,input
|
|
||||||
|
|
||||||
# Regular expression which should only match correct module names
|
|
||||||
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct module level names
|
|
||||||
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct class names
|
|
||||||
class-rgx=[A-Z_][a-zA-Z0-9]+$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct function names
|
|
||||||
function-rgx=[a-z_][a-z0-9_]{2,30}$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct method names
|
|
||||||
method-rgx=[a-z_][a-z0-9_]{2,30}$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct instance attribute names
|
|
||||||
attr-rgx=[a-z_][a-z0-9_]{2,30}$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct argument names
|
|
||||||
argument-rgx=[a-z_][a-z0-9_]{2,30}$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct variable names
|
|
||||||
variable-rgx=[a-z_][a-z0-9_]{2,30}$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct attribute names in class
|
|
||||||
# bodies
|
|
||||||
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
|
|
||||||
|
|
||||||
# Regular expression which should only match correct list comprehension /
|
|
||||||
# generator expression variable names
|
|
||||||
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
|
|
||||||
|
|
||||||
# Good variable names which should always be accepted, separated by a comma
|
|
||||||
good-names=i,j,k,ex,Run,_
|
|
||||||
|
|
||||||
# Bad variable names which should always be refused, separated by a comma
|
|
||||||
bad-names=foo,bar,baz,toto,tutu,tata
|
|
||||||
|
|
||||||
# Regular expression which should only match function or class names that do
|
|
||||||
# not require a docstring.
|
|
||||||
no-docstring-rgx=__.*__
|
|
||||||
|
|
||||||
# Minimum line length for functions/classes that require docstrings, shorter
|
|
||||||
# ones are exempt.
|
|
||||||
docstring-min-length=-1
|
|
||||||
|
|
||||||
|
|
||||||
[MISCELLANEOUS]
|
|
||||||
|
|
||||||
# List of note tags to take in consideration, separated by a comma.
|
|
||||||
notes=FIXME,XXX,TODO
|
|
||||||
|
|
||||||
|
|
||||||
[TYPECHECK]
|
|
||||||
|
|
||||||
# Tells whether missing members accessed in mixin class should be ignored. A
|
|
||||||
# mixin class is detected if its name ends with "mixin" (case insensitive).
|
|
||||||
ignore-mixin-members=yes
|
|
||||||
|
|
||||||
# List of classes names for which member attributes should not be checked
|
|
||||||
# (useful for classes with attributes dynamically set).
|
|
||||||
ignored-classes=SQLObject
|
|
||||||
|
|
||||||
# When zope mode is activated, add a predefined set of Zope acquired attributes
|
|
||||||
# to generated-members.
|
|
||||||
zope=no
|
|
||||||
|
|
||||||
# List of members which are set dynamically and missed by pylint inference
|
|
||||||
# system, and so shouldn't trigger E0201 when accessed. Python regular
|
|
||||||
# expressions are accepted.
|
|
||||||
generated-members=REQUEST,acl_users,aq_parent
|
|
||||||
|
|
||||||
|
|
||||||
[VARIABLES]
|
|
||||||
|
|
||||||
# Tells whether we should check for unused import in __init__ files.
|
|
||||||
init-import=no
|
|
||||||
|
|
||||||
# A regular expression matching the beginning of the name of dummy variables
|
|
||||||
# (i.e. not used).
|
|
||||||
dummy-variables-rgx=_$|dummy
|
|
||||||
|
|
||||||
# List of additional names supposed to be defined in builtins. Remember that
|
|
||||||
# you should avoid to define new builtins when possible.
|
|
||||||
additional-builtins=
|
|
||||||
|
|
||||||
|
|
||||||
[FORMAT]
|
|
||||||
|
|
||||||
# Maximum number of characters on a single line.
|
|
||||||
max-line-length=80
|
|
||||||
|
|
||||||
# Regexp for a line that is allowed to be longer than the limit.
|
|
||||||
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
|
|
||||||
|
|
||||||
# Allow the body of an if to be on the same line as the test if there is no
|
|
||||||
# else.
|
|
||||||
single-line-if-stmt=no
|
|
||||||
|
|
||||||
# List of optional constructs for which whitespace checking is disabled
|
|
||||||
no-space-check=trailing-comma,dict-separator
|
|
||||||
|
|
||||||
# Maximum number of lines in a module
|
|
||||||
max-module-lines=1000
|
|
||||||
|
|
||||||
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
|
|
||||||
# tab).
|
|
||||||
indent-string=' '
|
|
||||||
|
|
||||||
|
|
||||||
[SIMILARITIES]
|
|
||||||
|
|
||||||
# Minimum lines number of a similarity.
|
|
||||||
min-similarity-lines=4
|
|
||||||
|
|
||||||
# Ignore comments when computing similarities.
|
|
||||||
ignore-comments=yes
|
|
||||||
|
|
||||||
# Ignore docstrings when computing similarities.
|
|
||||||
ignore-docstrings=yes
|
|
||||||
|
|
||||||
# Ignore imports when computing similarities.
|
|
||||||
ignore-imports=no
|
|
||||||
|
|
||||||
|
|
||||||
[IMPORTS]
|
|
||||||
|
|
||||||
# Deprecated modules which should not be used, separated by a comma
|
|
||||||
deprecated-modules=regsub,TERMIOS,Bastion,rexec
|
|
||||||
|
|
||||||
# Create a graph of every (i.e. internal and external) dependencies in the
|
|
||||||
# given file (report RP0402 must not be disabled)
|
|
||||||
import-graph=
|
|
||||||
|
|
||||||
# Create a graph of external dependencies in the given file (report RP0402 must
|
|
||||||
# not be disabled)
|
|
||||||
ext-import-graph=
|
|
||||||
|
|
||||||
# Create a graph of internal dependencies in the given file (report RP0402 must
|
|
||||||
# not be disabled)
|
|
||||||
int-import-graph=
|
|
||||||
|
|
||||||
|
|
||||||
[DESIGN]
|
|
||||||
|
|
||||||
# Maximum number of arguments for function / method
|
|
||||||
max-args=5
|
|
||||||
|
|
||||||
# Argument names that match this expression will be ignored. Default to name
|
|
||||||
# with leading underscore
|
|
||||||
ignored-argument-names=_.*
|
|
||||||
|
|
||||||
# Maximum number of locals for function / method body
|
|
||||||
max-locals=15
|
|
||||||
|
|
||||||
# Maximum number of return / yield for function / method body
|
|
||||||
max-returns=6
|
|
||||||
|
|
||||||
# Maximum number of branch for function / method body
|
|
||||||
max-branches=12
|
|
||||||
|
|
||||||
# Maximum number of statements in function / method body
|
|
||||||
max-statements=50
|
|
||||||
|
|
||||||
# Maximum number of parents for a class (see R0901).
|
|
||||||
max-parents=7
|
|
||||||
|
|
||||||
# Maximum number of attributes for a class (see R0902).
|
|
||||||
max-attributes=7
|
|
||||||
|
|
||||||
# Minimum number of public methods for a class (see R0903).
|
|
||||||
min-public-methods=2
|
|
||||||
|
|
||||||
# Maximum number of public methods for a class (see R0904).
|
|
||||||
max-public-methods=20
|
|
||||||
|
|
||||||
|
|
||||||
[CLASSES]
|
|
||||||
|
|
||||||
# List of interface methods to ignore, separated by a comma. This is used for
|
|
||||||
# instance to not check methods defines in Zope's Interface base class.
|
|
||||||
ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
|
|
||||||
|
|
||||||
# List of method names used to declare (i.e. assign) instance attributes.
|
|
||||||
defining-attr-methods=__init__,__new__,setUp
|
|
||||||
|
|
||||||
# List of valid names for the first argument in a class method.
|
|
||||||
valid-classmethod-first-arg=cls
|
|
||||||
|
|
||||||
# List of valid names for the first argument in a metaclass class method.
|
|
||||||
valid-metaclass-classmethod-first-arg=mcs
|
|
||||||
|
|
||||||
|
|
||||||
[EXCEPTIONS]
|
|
||||||
|
|
||||||
# Exceptions that will emit a warning when being caught. Defaults to
|
|
||||||
# "Exception"
|
|
||||||
overgeneral-exceptions=Exception
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<RCC>
|
|
||||||
<qresource prefix="/plugins/CenRa_FLUX" >
|
|
||||||
<file>reficon.png</file>
|
|
||||||
<file>arrow-up.png</file>
|
|
||||||
<file>arrow-bottom.png</file>
|
|
||||||
<file>logo.png</file>
|
|
||||||
</qresource>
|
|
||||||
</RCC>
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
LRELEASE=$1
|
|
||||||
LOCALES=$2
|
|
||||||
|
|
||||||
|
|
||||||
for LOCALE in ${LOCALES}
|
|
||||||
do
|
|
||||||
echo "Processing: ${LOCALE}.ts"
|
|
||||||
# Note we don't use pylupdate with qt .pro file approach as it is flakey
|
|
||||||
# about what is made available.
|
|
||||||
$LRELEASE i18n/${LOCALE}.ts
|
|
||||||
done
|
|
||||||
@ -1,28 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
QGIS_PREFIX_PATH=/usr/local/qgis-2.0
|
|
||||||
if [ -n "$1" ]; then
|
|
||||||
QGIS_PREFIX_PATH=$1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo ${QGIS_PREFIX_PATH}
|
|
||||||
|
|
||||||
|
|
||||||
export QGIS_PREFIX_PATH=${QGIS_PREFIX_PATH}
|
|
||||||
export QGIS_PATH=${QGIS_PREFIX_PATH}
|
|
||||||
export LD_LIBRARY_PATH=${QGIS_PREFIX_PATH}/lib
|
|
||||||
export PYTHONPATH=${QGIS_PREFIX_PATH}/share/qgis/python:${QGIS_PREFIX_PATH}/share/qgis/python/plugins:${PYTHONPATH}
|
|
||||||
|
|
||||||
echo "QGIS PATH: $QGIS_PREFIX_PATH"
|
|
||||||
export QGIS_DEBUG=0
|
|
||||||
export QGIS_LOG_FILE=/tmp/inasafe/realtime/logs/qgis.log
|
|
||||||
|
|
||||||
export PATH=${QGIS_PREFIX_PATH}/bin:$PATH
|
|
||||||
|
|
||||||
echo "This script is intended to be sourced to set up your shell to"
|
|
||||||
echo "use a QGIS 2.0 built in $QGIS_PREFIX_PATH"
|
|
||||||
echo
|
|
||||||
echo "To use it do:"
|
|
||||||
echo "source $BASH_SOURCE /your/optional/install/path"
|
|
||||||
echo
|
|
||||||
echo "Then use the make file supplied here e.g. make guitest"
|
|
||||||
@ -1,56 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
LOCALES=$*
|
|
||||||
|
|
||||||
# Get newest .py files so we don't update strings unnecessarily
|
|
||||||
|
|
||||||
CHANGED_FILES=0
|
|
||||||
PYTHON_FILES=`find . -regex ".*\(ui\|py\)$" -type f`
|
|
||||||
for PYTHON_FILE in $PYTHON_FILES
|
|
||||||
do
|
|
||||||
CHANGED=$(stat -c %Y $PYTHON_FILE)
|
|
||||||
if [ ${CHANGED} -gt ${CHANGED_FILES} ]
|
|
||||||
then
|
|
||||||
CHANGED_FILES=${CHANGED}
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
# Qt translation stuff
|
|
||||||
# for .ts file
|
|
||||||
UPDATE=false
|
|
||||||
for LOCALE in ${LOCALES}
|
|
||||||
do
|
|
||||||
TRANSLATION_FILE="i18n/$LOCALE.ts"
|
|
||||||
if [ ! -f ${TRANSLATION_FILE} ]
|
|
||||||
then
|
|
||||||
# Force translation string collection as we have a new language file
|
|
||||||
touch ${TRANSLATION_FILE}
|
|
||||||
UPDATE=true
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
|
|
||||||
MODIFICATION_TIME=$(stat -c %Y ${TRANSLATION_FILE})
|
|
||||||
if [ ${CHANGED_FILES} -gt ${MODIFICATION_TIME} ]
|
|
||||||
then
|
|
||||||
# Force translation string collection as a .py file has been updated
|
|
||||||
UPDATE=true
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ ${UPDATE} == true ]
|
|
||||||
# retrieve all python files
|
|
||||||
then
|
|
||||||
echo ${PYTHON_FILES}
|
|
||||||
# update .ts
|
|
||||||
echo "Please provide translations by editing the translation files below:"
|
|
||||||
for LOCALE in ${LOCALES}
|
|
||||||
do
|
|
||||||
echo "i18n/"${LOCALE}".ts"
|
|
||||||
# Note we don't use pylupdate with qt .pro file approach as it is flakey
|
|
||||||
# about what is made available.
|
|
||||||
pylupdate4 -noobsolete ${PYTHON_FILES} -ts i18n/${LOCALE}.ts
|
|
||||||
done
|
|
||||||
else
|
|
||||||
echo "No need to edit any translation files (.ts) because no python files"
|
|
||||||
echo "has been updated since the last update translation. "
|
|
||||||
fi
|
|
||||||
@ -1,895 +0,0 @@
|
|||||||
<!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'>
|
|
||||||
<qgis simplifyDrawingHints="1" version="3.16.7-Hannover" styleCategories="AllStyleCategories" simplifyLocal="1" labelsEnabled="0" simplifyMaxScale="1" simplifyDrawingTol="1" maxScale="0" minScale="100000000" simplifyAlgorithm="0" readOnly="0" hasScaleBasedVisibilityFlag="0">
|
|
||||||
<flags>
|
|
||||||
<Identifiable>1</Identifiable>
|
|
||||||
<Removable>1</Removable>
|
|
||||||
<Searchable>1</Searchable>
|
|
||||||
</flags>
|
|
||||||
<temporal startField="" endField="last_dateevenement" durationUnit="min" mode="0" accumulate="0" endExpression="" durationField="" fixedDuration="0" enabled="0" startExpression="">
|
|
||||||
<fixedRange>
|
|
||||||
<start></start>
|
|
||||||
<end></end>
|
|
||||||
</fixedRange>
|
|
||||||
</temporal>
|
|
||||||
<renderer-v2 attr="type_mfu" type="categorizedSymbol" forceraster="0" symbollevels="0" enableorderby="0">
|
|
||||||
<categories>
|
|
||||||
<category symbol="0" label="Achat finalisé (Acquisition)" render="true" value="Achat finalisé (Acquisition)"/>
|
|
||||||
<category symbol="1" label="Bail emphytéotique "classique"" render="true" value="Bail emphytéotique "classique""/>
|
|
||||||
<category symbol="2" label="Bail emphytéotique administratif" render="true" value="Bail emphytéotique administratif"/>
|
|
||||||
<category symbol="3" label="Bail civil" render="true" value="Bail civil"/>
|
|
||||||
<category symbol="4" label="Convention d'usage / convention de gestion" render="true" value="Convention d'usage / convention de gestion"/>
|
|
||||||
<category symbol="5" label="Convention de gestion entre le CEN et le Fonds de dotation / la Fondation des CEN" render="true" value="Convention de gestion entre le CEN et le Fonds de dotation / la Fondation des CEN"/>
|
|
||||||
<category symbol="6" label="Convention de gestion sur terrains militaires" render="true" value="Convention de gestion sur terrains militaires"/>
|
|
||||||
<category symbol="7" label="Convention de gestion avec le Conservatoire du littoral" render="true" value="Convention de gestion avec le Conservatoire du littoral"/>
|
|
||||||
<category symbol="8" label="Convention d'occupation précaire" render="true" value="Convention d'occupation précaire"/>
|
|
||||||
<category symbol="9" label="Contrat ORE" render="true" value="Contrat ORE"/>
|
|
||||||
<category symbol="10" label="Prêt à usage / commodat" render="true" value="Prêt à usage / commodat"/>
|
|
||||||
<category symbol="11" label="" render="false" value=""/>
|
|
||||||
</categories>
|
|
||||||
<symbols>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="0">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="50,235,64,179"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.3"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="1">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="248,215,83,179"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.3"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="10">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="180,238,244,179"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="11">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="40,161,78,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="2">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="237,156,50,179"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.3"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="3">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="44,238,138,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="4">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="0,204,255,179"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.3"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="5">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="231,138,232,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="6">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="176,201,163,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="7">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="35,137,225,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="8">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="255,250,177,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="9">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="28,161,99,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
</symbols>
|
|
||||||
<source-symbol>
|
|
||||||
<symbol alpha="1" type="fill" clip_to_extent="1" force_rhr="0" name="0">
|
|
||||||
<layer pass="0" locked="0" class="SimpleFill" enabled="1">
|
|
||||||
<prop k="border_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="color" v="231,138,232,255"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0.26"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="style" v="solid"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
</source-symbol>
|
|
||||||
<rotation/>
|
|
||||||
<sizescale/>
|
|
||||||
</renderer-v2>
|
|
||||||
<customproperties>
|
|
||||||
<property key="dualview/previewExpressions" value=""nom""/>
|
|
||||||
<property key="embeddedWidgets/count" value="0"/>
|
|
||||||
<property key="variableNames"/>
|
|
||||||
<property key="variableValues"/>
|
|
||||||
</customproperties>
|
|
||||||
<blendMode>0</blendMode>
|
|
||||||
<featureBlendMode>0</featureBlendMode>
|
|
||||||
<layerOpacity>1</layerOpacity>
|
|
||||||
<SingleCategoryDiagramRenderer attributeLegend="1" diagramType="Histogram">
|
|
||||||
<DiagramCategory barWidth="5" direction="1" diagramOrientation="Up" backgroundAlpha="255" maxScaleDenominator="1e+08" height="15" penWidth="0" enabled="0" penAlpha="255" sizeScale="3x:0,0,0,0,0,0" minimumSize="0" backgroundColor="#ffffff" scaleBasedVisibility="0" spacingUnit="MM" lineSizeType="MM" opacity="1" scaleDependency="Area" showAxis="0" labelPlacementMethod="XHeight" rotationOffset="270" lineSizeScale="3x:0,0,0,0,0,0" sizeType="MM" minScaleDenominator="0" spacing="0" penColor="#000000" width="15" spacingUnitScale="3x:0,0,0,0,0,0">
|
|
||||||
<fontProperties style="" description="MS Shell Dlg 2,8.25,-1,5,50,0,0,0,0,0"/>
|
|
||||||
<attribute field="" label="" color="#000000"/>
|
|
||||||
<axisSymbol>
|
|
||||||
<symbol alpha="1" type="line" clip_to_extent="1" force_rhr="0" name="">
|
|
||||||
<layer pass="0" locked="0" class="SimpleLine" enabled="1">
|
|
||||||
<prop k="align_dash_pattern" v="0"/>
|
|
||||||
<prop k="capstyle" v="square"/>
|
|
||||||
<prop k="customdash" v="5;2"/>
|
|
||||||
<prop k="customdash_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="customdash_unit" v="MM"/>
|
|
||||||
<prop k="dash_pattern_offset" v="0"/>
|
|
||||||
<prop k="dash_pattern_offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="dash_pattern_offset_unit" v="MM"/>
|
|
||||||
<prop k="draw_inside_polygon" v="0"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="line_color" v="35,35,35,255"/>
|
|
||||||
<prop k="line_style" v="solid"/>
|
|
||||||
<prop k="line_width" v="0.26"/>
|
|
||||||
<prop k="line_width_unit" v="MM"/>
|
|
||||||
<prop k="offset" v="0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="ring_filter" v="0"/>
|
|
||||||
<prop k="tweak_dash_pattern_on_corners" v="0"/>
|
|
||||||
<prop k="use_custom_dash" v="0"/>
|
|
||||||
<prop k="width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
</axisSymbol>
|
|
||||||
</DiagramCategory>
|
|
||||||
</SingleCategoryDiagramRenderer>
|
|
||||||
<DiagramLayerSettings dist="0" linePlacementFlags="18" showAll="1" obstacle="0" placement="1" priority="0" zIndex="0">
|
|
||||||
<properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</properties>
|
|
||||||
</DiagramLayerSettings>
|
|
||||||
<geometryOptions geometryPrecision="0" removeDuplicateNodes="0">
|
|
||||||
<activeChecks/>
|
|
||||||
<checkConfiguration type="Map">
|
|
||||||
<Option type="Map" name="QgsGeometryGapCheck">
|
|
||||||
<Option value="0" type="double" name="allowedGapsBuffer"/>
|
|
||||||
<Option value="false" type="bool" name="allowedGapsEnabled"/>
|
|
||||||
<Option value="" type="QString" name="allowedGapsLayer"/>
|
|
||||||
</Option>
|
|
||||||
</checkConfiguration>
|
|
||||||
</geometryOptions>
|
|
||||||
<legend type="default-vector"/>
|
|
||||||
<referencedLayers/>
|
|
||||||
<fieldConfiguration>
|
|
||||||
<field configurationFlags="None" name="idparcelle">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="departement">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="insee_commune">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="insee_commune_ref">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="nom_commmune">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="section">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="numero">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="contenance">
|
|
||||||
<editWidget type="Range">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="libinteret">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="categorie_mfu">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="type_mfu">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="date_debut_mfu">
|
|
||||||
<editWidget type="DateTime">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="codesite">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="nom_site">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="date_debut_convention">
|
|
||||||
<editWidget type="DateTime">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="date_fin_convention">
|
|
||||||
<editWidget type="DateTime">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="reconductibilite_convention">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="idaire">
|
|
||||||
<editWidget type="Range">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="lib_aire">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="libdossier">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="libhabitat">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="last_idevenement">
|
|
||||||
<editWidget type="Range">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="last_libevenement">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="last_dateevenement">
|
|
||||||
<editWidget type="DateTime">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="utilisateur">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="millesime_cadastre">
|
|
||||||
<editWidget type="DateTime">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="source_cadastre">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="parcelle_partie">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="parcelle_mc">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="parcelle_bnd">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
</fieldConfiguration>
|
|
||||||
<aliases>
|
|
||||||
<alias field="idparcelle" index="0" name=""/>
|
|
||||||
<alias field="departement" index="1" name=""/>
|
|
||||||
<alias field="insee_commune" index="2" name=""/>
|
|
||||||
<alias field="insee_commune_ref" index="3" name=""/>
|
|
||||||
<alias field="nom_commmune" index="4" name=""/>
|
|
||||||
<alias field="section" index="5" name=""/>
|
|
||||||
<alias field="numero" index="6" name=""/>
|
|
||||||
<alias field="contenance" index="7" name=""/>
|
|
||||||
<alias field="libinteret" index="8" name=""/>
|
|
||||||
<alias field="categorie_mfu" index="9" name=""/>
|
|
||||||
<alias field="type_mfu" index="10" name=""/>
|
|
||||||
<alias field="date_debut_mfu" index="11" name=""/>
|
|
||||||
<alias field="codesite" index="12" name=""/>
|
|
||||||
<alias field="nom_site" index="13" name=""/>
|
|
||||||
<alias field="date_debut_convention" index="14" name=""/>
|
|
||||||
<alias field="date_fin_convention" index="15" name=""/>
|
|
||||||
<alias field="reconductibilite_convention" index="16" name=""/>
|
|
||||||
<alias field="idaire" index="17" name=""/>
|
|
||||||
<alias field="lib_aire" index="18" name=""/>
|
|
||||||
<alias field="libdossier" index="19" name=""/>
|
|
||||||
<alias field="libhabitat" index="20" name=""/>
|
|
||||||
<alias field="last_idevenement" index="21" name=""/>
|
|
||||||
<alias field="last_libevenement" index="22" name=""/>
|
|
||||||
<alias field="last_dateevenement" index="23" name=""/>
|
|
||||||
<alias field="utilisateur" index="24" name=""/>
|
|
||||||
<alias field="millesime_cadastre" index="25" name=""/>
|
|
||||||
<alias field="source_cadastre" index="26" name=""/>
|
|
||||||
<alias field="parcelle_partie" index="27" name=""/>
|
|
||||||
<alias field="parcelle_mc" index="28" name=""/>
|
|
||||||
<alias field="parcelle_bnd" index="29" name=""/>
|
|
||||||
</aliases>
|
|
||||||
<defaults>
|
|
||||||
<default field="idparcelle" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="departement" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="insee_commune" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="insee_commune_ref" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="nom_commmune" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="section" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="numero" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="contenance" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="libinteret" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="categorie_mfu" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="type_mfu" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="date_debut_mfu" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="codesite" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="nom_site" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="date_debut_convention" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="date_fin_convention" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="reconductibilite_convention" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="idaire" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="lib_aire" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="libdossier" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="libhabitat" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="last_idevenement" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="last_libevenement" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="last_dateevenement" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="utilisateur" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="millesime_cadastre" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="source_cadastre" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="parcelle_partie" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="parcelle_mc" expression="" applyOnUpdate="0"/>
|
|
||||||
<default field="parcelle_bnd" expression="" applyOnUpdate="0"/>
|
|
||||||
</defaults>
|
|
||||||
<constraints>
|
|
||||||
<constraint field="idparcelle" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="departement" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="insee_commune" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="insee_commune_ref" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="nom_commmune" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="section" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="numero" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="contenance" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="libinteret" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="categorie_mfu" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="type_mfu" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="date_debut_mfu" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="codesite" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="nom_site" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="date_debut_convention" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="date_fin_convention" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="reconductibilite_convention" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="idaire" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="lib_aire" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="libdossier" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="libhabitat" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="last_idevenement" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="last_libevenement" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="last_dateevenement" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="utilisateur" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="millesime_cadastre" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="source_cadastre" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="parcelle_partie" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="parcelle_mc" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
<constraint field="parcelle_bnd" constraints="0" notnull_strength="0" unique_strength="0" exp_strength="0"/>
|
|
||||||
</constraints>
|
|
||||||
<constraintExpressions>
|
|
||||||
<constraint field="idparcelle" exp="" desc=""/>
|
|
||||||
<constraint field="departement" exp="" desc=""/>
|
|
||||||
<constraint field="insee_commune" exp="" desc=""/>
|
|
||||||
<constraint field="insee_commune_ref" exp="" desc=""/>
|
|
||||||
<constraint field="nom_commmune" exp="" desc=""/>
|
|
||||||
<constraint field="section" exp="" desc=""/>
|
|
||||||
<constraint field="numero" exp="" desc=""/>
|
|
||||||
<constraint field="contenance" exp="" desc=""/>
|
|
||||||
<constraint field="libinteret" exp="" desc=""/>
|
|
||||||
<constraint field="categorie_mfu" exp="" desc=""/>
|
|
||||||
<constraint field="type_mfu" exp="" desc=""/>
|
|
||||||
<constraint field="date_debut_mfu" exp="" desc=""/>
|
|
||||||
<constraint field="codesite" exp="" desc=""/>
|
|
||||||
<constraint field="nom_site" exp="" desc=""/>
|
|
||||||
<constraint field="date_debut_convention" exp="" desc=""/>
|
|
||||||
<constraint field="date_fin_convention" exp="" desc=""/>
|
|
||||||
<constraint field="reconductibilite_convention" exp="" desc=""/>
|
|
||||||
<constraint field="idaire" exp="" desc=""/>
|
|
||||||
<constraint field="lib_aire" exp="" desc=""/>
|
|
||||||
<constraint field="libdossier" exp="" desc=""/>
|
|
||||||
<constraint field="libhabitat" exp="" desc=""/>
|
|
||||||
<constraint field="last_idevenement" exp="" desc=""/>
|
|
||||||
<constraint field="last_libevenement" exp="" desc=""/>
|
|
||||||
<constraint field="last_dateevenement" exp="" desc=""/>
|
|
||||||
<constraint field="utilisateur" exp="" desc=""/>
|
|
||||||
<constraint field="millesime_cadastre" exp="" desc=""/>
|
|
||||||
<constraint field="source_cadastre" exp="" desc=""/>
|
|
||||||
<constraint field="parcelle_partie" exp="" desc=""/>
|
|
||||||
<constraint field="parcelle_mc" exp="" desc=""/>
|
|
||||||
<constraint field="parcelle_bnd" exp="" desc=""/>
|
|
||||||
</constraintExpressions>
|
|
||||||
<expressionfields/>
|
|
||||||
<attributeactions>
|
|
||||||
<defaultAction key="Canvas" value="{00000000-0000-0000-0000-000000000000}"/>
|
|
||||||
</attributeactions>
|
|
||||||
<attributetableconfig actionWidgetStyle="dropDown" sortExpression=""date_debut"" sortOrder="1">
|
|
||||||
<columns>
|
|
||||||
<column hidden="0" type="field" width="-1" name="idparcelle"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="section"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="numero"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="contenance"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="libinteret"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="type_mfu"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="utilisateur"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="idaire"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="libdossier"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="libhabitat"/>
|
|
||||||
<column hidden="1" type="actions" width="-1"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="departement"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="insee_commune"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="insee_commune_ref"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="nom_commmune"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="categorie_mfu"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="date_debut_mfu"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="codesite"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="nom_site"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="date_debut_convention"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="date_fin_convention"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="reconductibilite_convention"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="lib_aire"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="last_idevenement"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="last_libevenement"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="last_dateevenement"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="millesime_cadastre"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="source_cadastre"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="parcelle_partie"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="parcelle_mc"/>
|
|
||||||
<column hidden="0" type="field" width="-1" name="parcelle_bnd"/>
|
|
||||||
</columns>
|
|
||||||
</attributetableconfig>
|
|
||||||
<conditionalstyles>
|
|
||||||
<rowstyles/>
|
|
||||||
<fieldstyles/>
|
|
||||||
</conditionalstyles>
|
|
||||||
<storedexpressions/>
|
|
||||||
<editform tolerant="1"></editform>
|
|
||||||
<editforminit/>
|
|
||||||
<editforminitcodesource>0</editforminitcodesource>
|
|
||||||
<editforminitfilepath></editforminitfilepath>
|
|
||||||
<editforminitcode><![CDATA[# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
Les formulaires QGIS peuvent avoir une fonction Python qui sera appelée à l'ouverture du formulaire.
|
|
||||||
|
|
||||||
Utilisez cette fonction pour ajouter plus de fonctionnalités à vos formulaires.
|
|
||||||
|
|
||||||
Entrez le nom de la fonction dans le champ "Fonction d'initialisation Python".
|
|
||||||
Voici un exemple à suivre:
|
|
||||||
"""
|
|
||||||
from qgis.PyQt.QtWidgets import QWidget
|
|
||||||
|
|
||||||
def my_form_open(dialog, layer, feature):
|
|
||||||
geom = feature.geometry()
|
|
||||||
control = dialog.findChild(QWidget, "MyLineEdit")
|
|
||||||
|
|
||||||
]]></editforminitcode>
|
|
||||||
<featformsuppress>0</featformsuppress>
|
|
||||||
<editorlayout>generatedlayout</editorlayout>
|
|
||||||
<editable>
|
|
||||||
<field editable="1" name="categorie_mfu"/>
|
|
||||||
<field editable="1" name="codesite"/>
|
|
||||||
<field editable="1" name="commune"/>
|
|
||||||
<field editable="1" name="commune_ref"/>
|
|
||||||
<field editable="1" name="contenance"/>
|
|
||||||
<field editable="1" name="date_debut"/>
|
|
||||||
<field editable="1" name="date_debut_convention"/>
|
|
||||||
<field editable="1" name="date_debut_mfu"/>
|
|
||||||
<field editable="1" name="date_fin"/>
|
|
||||||
<field editable="1" name="date_fin_convention"/>
|
|
||||||
<field editable="1" name="date_saisie"/>
|
|
||||||
<field editable="1" name="dateevenement"/>
|
|
||||||
<field editable="1" name="departement"/>
|
|
||||||
<field editable="1" name="gid"/>
|
|
||||||
<field editable="1" name="id_type_mfu"/>
|
|
||||||
<field editable="1" name="idaire"/>
|
|
||||||
<field editable="1" name="idcategorie"/>
|
|
||||||
<field editable="1" name="idparcelle"/>
|
|
||||||
<field editable="1" name="insee_commune"/>
|
|
||||||
<field editable="1" name="insee_commune_ref"/>
|
|
||||||
<field editable="1" name="last_dateevenement"/>
|
|
||||||
<field editable="1" name="last_idevenement"/>
|
|
||||||
<field editable="1" name="last_libevenement"/>
|
|
||||||
<field editable="1" name="lib_aire"/>
|
|
||||||
<field editable="1" name="libaire"/>
|
|
||||||
<field editable="1" name="libcategorie"/>
|
|
||||||
<field editable="1" name="libdossier"/>
|
|
||||||
<field editable="1" name="libevenement"/>
|
|
||||||
<field editable="1" name="libhabitat"/>
|
|
||||||
<field editable="1" name="libinteret"/>
|
|
||||||
<field editable="1" name="millesime_cadastre"/>
|
|
||||||
<field editable="1" name="nom"/>
|
|
||||||
<field editable="1" name="nom_commmune"/>
|
|
||||||
<field editable="1" name="nom_site"/>
|
|
||||||
<field editable="1" name="numero"/>
|
|
||||||
<field editable="1" name="parcelle_bnd"/>
|
|
||||||
<field editable="1" name="parcelle_mc"/>
|
|
||||||
<field editable="1" name="parcelle_partie"/>
|
|
||||||
<field editable="1" name="reconductibilite"/>
|
|
||||||
<field editable="1" name="reconductibilite_convention"/>
|
|
||||||
<field editable="1" name="section"/>
|
|
||||||
<field editable="1" name="source_cadastre"/>
|
|
||||||
<field editable="1" name="type_mfu"/>
|
|
||||||
<field editable="1" name="utilisateur"/>
|
|
||||||
</editable>
|
|
||||||
<labelOnTop>
|
|
||||||
<field labelOnTop="0" name="categorie_mfu"/>
|
|
||||||
<field labelOnTop="0" name="codesite"/>
|
|
||||||
<field labelOnTop="0" name="commune"/>
|
|
||||||
<field labelOnTop="0" name="commune_ref"/>
|
|
||||||
<field labelOnTop="0" name="contenance"/>
|
|
||||||
<field labelOnTop="0" name="date_debut"/>
|
|
||||||
<field labelOnTop="0" name="date_debut_convention"/>
|
|
||||||
<field labelOnTop="0" name="date_debut_mfu"/>
|
|
||||||
<field labelOnTop="0" name="date_fin"/>
|
|
||||||
<field labelOnTop="0" name="date_fin_convention"/>
|
|
||||||
<field labelOnTop="0" name="date_saisie"/>
|
|
||||||
<field labelOnTop="0" name="dateevenement"/>
|
|
||||||
<field labelOnTop="0" name="departement"/>
|
|
||||||
<field labelOnTop="0" name="gid"/>
|
|
||||||
<field labelOnTop="0" name="id_type_mfu"/>
|
|
||||||
<field labelOnTop="0" name="idaire"/>
|
|
||||||
<field labelOnTop="0" name="idcategorie"/>
|
|
||||||
<field labelOnTop="0" name="idparcelle"/>
|
|
||||||
<field labelOnTop="0" name="insee_commune"/>
|
|
||||||
<field labelOnTop="0" name="insee_commune_ref"/>
|
|
||||||
<field labelOnTop="0" name="last_dateevenement"/>
|
|
||||||
<field labelOnTop="0" name="last_idevenement"/>
|
|
||||||
<field labelOnTop="0" name="last_libevenement"/>
|
|
||||||
<field labelOnTop="0" name="lib_aire"/>
|
|
||||||
<field labelOnTop="0" name="libaire"/>
|
|
||||||
<field labelOnTop="0" name="libcategorie"/>
|
|
||||||
<field labelOnTop="0" name="libdossier"/>
|
|
||||||
<field labelOnTop="0" name="libevenement"/>
|
|
||||||
<field labelOnTop="0" name="libhabitat"/>
|
|
||||||
<field labelOnTop="0" name="libinteret"/>
|
|
||||||
<field labelOnTop="0" name="millesime_cadastre"/>
|
|
||||||
<field labelOnTop="0" name="nom"/>
|
|
||||||
<field labelOnTop="0" name="nom_commmune"/>
|
|
||||||
<field labelOnTop="0" name="nom_site"/>
|
|
||||||
<field labelOnTop="0" name="numero"/>
|
|
||||||
<field labelOnTop="0" name="parcelle_bnd"/>
|
|
||||||
<field labelOnTop="0" name="parcelle_mc"/>
|
|
||||||
<field labelOnTop="0" name="parcelle_partie"/>
|
|
||||||
<field labelOnTop="0" name="reconductibilite"/>
|
|
||||||
<field labelOnTop="0" name="reconductibilite_convention"/>
|
|
||||||
<field labelOnTop="0" name="section"/>
|
|
||||||
<field labelOnTop="0" name="source_cadastre"/>
|
|
||||||
<field labelOnTop="0" name="type_mfu"/>
|
|
||||||
<field labelOnTop="0" name="utilisateur"/>
|
|
||||||
</labelOnTop>
|
|
||||||
<dataDefinedFieldProperties/>
|
|
||||||
<widgets/>
|
|
||||||
<previewExpression>"nom"</previewExpression>
|
|
||||||
<mapTip></mapTip>
|
|
||||||
<layerGeometryType>2</layerGeometryType>
|
|
||||||
</qgis>
|
|
||||||
@ -1,482 +0,0 @@
|
|||||||
<!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'>
|
|
||||||
<qgis minScale="100000000" version="3.22.5-Białowieża" simplifyLocal="1" readOnly="0" labelsEnabled="0" simplifyAlgorithm="0" maxScale="0" simplifyMaxScale="1" hasScaleBasedVisibilityFlag="0" simplifyDrawingHints="0" styleCategories="AllStyleCategories" symbologyReferenceScale="-1" simplifyDrawingTol="1">
|
|
||||||
<flags>
|
|
||||||
<Identifiable>1</Identifiable>
|
|
||||||
<Removable>1</Removable>
|
|
||||||
<Searchable>1</Searchable>
|
|
||||||
<Private>0</Private>
|
|
||||||
</flags>
|
|
||||||
<temporal endExpression="" limitMode="0" durationField="profondeur" durationUnit="min" accumulate="0" fixedDuration="0" enabled="0" endField="" startField="date_installation" mode="0" startExpression="">
|
|
||||||
<fixedRange>
|
|
||||||
<start></start>
|
|
||||||
<end></end>
|
|
||||||
</fixedRange>
|
|
||||||
</temporal>
|
|
||||||
<renderer-v2 forceraster="0" referencescale="-1" symbollevels="0" enableorderby="0" type="singleSymbol">
|
|
||||||
<symbols>
|
|
||||||
<symbol clip_to_extent="1" alpha="1" force_rhr="0" type="marker" name="0">
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
<layer class="SimpleMarker" pass="0" enabled="1" locked="0">
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="0" type="QString" name="angle"/>
|
|
||||||
<Option value="square" type="QString" name="cap_style"/>
|
|
||||||
<Option value="164,113,88,255" type="QString" name="color"/>
|
|
||||||
<Option value="1" type="QString" name="horizontal_anchor_point"/>
|
|
||||||
<Option value="bevel" type="QString" name="joinstyle"/>
|
|
||||||
<Option value="circle" type="QString" name="name"/>
|
|
||||||
<Option value="0,0" type="QString" name="offset"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="offset_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="offset_unit"/>
|
|
||||||
<Option value="35,35,35,255" type="QString" name="outline_color"/>
|
|
||||||
<Option value="solid" type="QString" name="outline_style"/>
|
|
||||||
<Option value="0" type="QString" name="outline_width"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="outline_width_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="outline_width_unit"/>
|
|
||||||
<Option value="diameter" type="QString" name="scale_method"/>
|
|
||||||
<Option value="2" type="QString" name="size"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="size_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="size_unit"/>
|
|
||||||
<Option value="1" type="QString" name="vertical_anchor_point"/>
|
|
||||||
</Option>
|
|
||||||
<prop k="angle" v="0"/>
|
|
||||||
<prop k="cap_style" v="square"/>
|
|
||||||
<prop k="color" v="164,113,88,255"/>
|
|
||||||
<prop k="horizontal_anchor_point" v="1"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="name" v="circle"/>
|
|
||||||
<prop k="offset" v="0,0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="outline_color" v="35,35,35,255"/>
|
|
||||||
<prop k="outline_style" v="solid"/>
|
|
||||||
<prop k="outline_width" v="0"/>
|
|
||||||
<prop k="outline_width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="outline_width_unit" v="MM"/>
|
|
||||||
<prop k="scale_method" v="diameter"/>
|
|
||||||
<prop k="size" v="2"/>
|
|
||||||
<prop k="size_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="size_unit" v="MM"/>
|
|
||||||
<prop k="vertical_anchor_point" v="1"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
</symbols>
|
|
||||||
<rotation/>
|
|
||||||
<sizescale/>
|
|
||||||
</renderer-v2>
|
|
||||||
<customproperties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="List" name="dualview/previewExpressions">
|
|
||||||
<Option value=""id_cen"" type="QString"/>
|
|
||||||
</Option>
|
|
||||||
<Option value="0" type="int" name="embeddedWidgets/count"/>
|
|
||||||
<Option name="variableNames"/>
|
|
||||||
<Option name="variableValues"/>
|
|
||||||
</Option>
|
|
||||||
</customproperties>
|
|
||||||
<blendMode>0</blendMode>
|
|
||||||
<featureBlendMode>0</featureBlendMode>
|
|
||||||
<layerOpacity>1</layerOpacity>
|
|
||||||
<SingleCategoryDiagramRenderer attributeLegend="1" diagramType="Histogram">
|
|
||||||
<DiagramCategory width="15" showAxis="1" minScaleDenominator="0" rotationOffset="270" backgroundColor="#ffffff" minimumSize="0" scaleBasedVisibility="0" barWidth="5" backgroundAlpha="255" sizeScale="3x:0,0,0,0,0,0" lineSizeType="MM" penColor="#000000" opacity="1" diagramOrientation="Up" direction="0" lineSizeScale="3x:0,0,0,0,0,0" scaleDependency="Area" spacing="5" maxScaleDenominator="1e+08" spacingUnit="MM" labelPlacementMethod="XHeight" penWidth="0" spacingUnitScale="3x:0,0,0,0,0,0" penAlpha="255" enabled="0" sizeType="MM" height="15">
|
|
||||||
<fontProperties style="" description="MS Shell Dlg 2,8.25,-1,5,50,0,0,0,0,0"/>
|
|
||||||
<attribute field="" label="" color="#000000"/>
|
|
||||||
<axisSymbol>
|
|
||||||
<symbol clip_to_extent="1" alpha="1" force_rhr="0" type="line" name="">
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
<layer class="SimpleLine" pass="0" enabled="1" locked="0">
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="0" type="QString" name="align_dash_pattern"/>
|
|
||||||
<Option value="square" type="QString" name="capstyle"/>
|
|
||||||
<Option value="5;2" type="QString" name="customdash"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="customdash_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="customdash_unit"/>
|
|
||||||
<Option value="0" type="QString" name="dash_pattern_offset"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="dash_pattern_offset_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="dash_pattern_offset_unit"/>
|
|
||||||
<Option value="0" type="QString" name="draw_inside_polygon"/>
|
|
||||||
<Option value="bevel" type="QString" name="joinstyle"/>
|
|
||||||
<Option value="35,35,35,255" type="QString" name="line_color"/>
|
|
||||||
<Option value="solid" type="QString" name="line_style"/>
|
|
||||||
<Option value="0.26" type="QString" name="line_width"/>
|
|
||||||
<Option value="MM" type="QString" name="line_width_unit"/>
|
|
||||||
<Option value="0" type="QString" name="offset"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="offset_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="offset_unit"/>
|
|
||||||
<Option value="0" type="QString" name="ring_filter"/>
|
|
||||||
<Option value="0" type="QString" name="trim_distance_end"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="trim_distance_end_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="trim_distance_end_unit"/>
|
|
||||||
<Option value="0" type="QString" name="trim_distance_start"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="trim_distance_start_map_unit_scale"/>
|
|
||||||
<Option value="MM" type="QString" name="trim_distance_start_unit"/>
|
|
||||||
<Option value="0" type="QString" name="tweak_dash_pattern_on_corners"/>
|
|
||||||
<Option value="0" type="QString" name="use_custom_dash"/>
|
|
||||||
<Option value="3x:0,0,0,0,0,0" type="QString" name="width_map_unit_scale"/>
|
|
||||||
</Option>
|
|
||||||
<prop k="align_dash_pattern" v="0"/>
|
|
||||||
<prop k="capstyle" v="square"/>
|
|
||||||
<prop k="customdash" v="5;2"/>
|
|
||||||
<prop k="customdash_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="customdash_unit" v="MM"/>
|
|
||||||
<prop k="dash_pattern_offset" v="0"/>
|
|
||||||
<prop k="dash_pattern_offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="dash_pattern_offset_unit" v="MM"/>
|
|
||||||
<prop k="draw_inside_polygon" v="0"/>
|
|
||||||
<prop k="joinstyle" v="bevel"/>
|
|
||||||
<prop k="line_color" v="35,35,35,255"/>
|
|
||||||
<prop k="line_style" v="solid"/>
|
|
||||||
<prop k="line_width" v="0.26"/>
|
|
||||||
<prop k="line_width_unit" v="MM"/>
|
|
||||||
<prop k="offset" v="0"/>
|
|
||||||
<prop k="offset_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="offset_unit" v="MM"/>
|
|
||||||
<prop k="ring_filter" v="0"/>
|
|
||||||
<prop k="trim_distance_end" v="0"/>
|
|
||||||
<prop k="trim_distance_end_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="trim_distance_end_unit" v="MM"/>
|
|
||||||
<prop k="trim_distance_start" v="0"/>
|
|
||||||
<prop k="trim_distance_start_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<prop k="trim_distance_start_unit" v="MM"/>
|
|
||||||
<prop k="tweak_dash_pattern_on_corners" v="0"/>
|
|
||||||
<prop k="use_custom_dash" v="0"/>
|
|
||||||
<prop k="width_map_unit_scale" v="3x:0,0,0,0,0,0"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
</axisSymbol>
|
|
||||||
</DiagramCategory>
|
|
||||||
</SingleCategoryDiagramRenderer>
|
|
||||||
<DiagramLayerSettings dist="0" showAll="1" obstacle="0" zIndex="0" linePlacementFlags="18" priority="0" placement="0">
|
|
||||||
<properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="" type="QString" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option value="collection" type="QString" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</properties>
|
|
||||||
</DiagramLayerSettings>
|
|
||||||
<geometryOptions removeDuplicateNodes="0" geometryPrecision="0">
|
|
||||||
<activeChecks/>
|
|
||||||
<checkConfiguration/>
|
|
||||||
</geometryOptions>
|
|
||||||
<legend showLabelLegend="0" type="default-vector"/>
|
|
||||||
<referencedLayers/>
|
|
||||||
<fieldConfiguration>
|
|
||||||
<field configurationFlags="None" name="id_cen">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="commune">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="dept">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="date_installation">
|
|
||||||
<editWidget type="DateTime">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="true" type="bool" name="allow_null"/>
|
|
||||||
<Option value="true" type="bool" name="calendar_popup"/>
|
|
||||||
<Option value="dd/MM/yyyy" type="QString" name="display_format"/>
|
|
||||||
<Option value="dd/MM/yyyy" type="QString" name="field_format"/>
|
|
||||||
<Option value="false" type="bool" name="field_iso_format"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="modele_sonde">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="logiciel">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="frequence_sauvegarde">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="ligero">
|
|
||||||
<editWidget type="ValueMap">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="List" name="map">
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="oui" type="QString" name="oui"/>
|
|
||||||
</Option>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="non" type="QString" name="non"/>
|
|
||||||
</Option>
|
|
||||||
</Option>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="profondeur">
|
|
||||||
<editWidget type="Range">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="true" type="bool" name="AllowNull"/>
|
|
||||||
<Option value="100" type="double" name="Max"/>
|
|
||||||
<Option value="0" type="double" name="Min"/>
|
|
||||||
<Option value="0" type="int" name="Precision"/>
|
|
||||||
<Option value="10" type="double" name="Step"/>
|
|
||||||
<Option value="SpinBox" type="QString" name="Style"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="contexte">
|
|
||||||
<editWidget type="ValueMap">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="List" name="map">
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="Tourbière boisée" type="QString" name="Tourbière boisée"/>
|
|
||||||
</Option>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="Autres" type="QString" name="Autres"/>
|
|
||||||
</Option>
|
|
||||||
</Option>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="salarie_referent">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="commentaires">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option value="false" type="bool" name="IsMultiline"/>
|
|
||||||
<Option value="false" type="bool" name="UseHtml"/>
|
|
||||||
</Option>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
</fieldConfiguration>
|
|
||||||
<aliases>
|
|
||||||
<alias field="id_cen" index="0" name=""/>
|
|
||||||
<alias field="commune" index="1" name=""/>
|
|
||||||
<alias field="dept" index="2" name=""/>
|
|
||||||
<alias field="date_installation" index="3" name=""/>
|
|
||||||
<alias field="modele_sonde" index="4" name=""/>
|
|
||||||
<alias field="logiciel" index="5" name=""/>
|
|
||||||
<alias field="frequence_sauvegarde" index="6" name=""/>
|
|
||||||
<alias field="ligero" index="7" name=""/>
|
|
||||||
<alias field="profondeur" index="8" name=""/>
|
|
||||||
<alias field="contexte" index="9" name=""/>
|
|
||||||
<alias field="salarie_referent" index="10" name=""/>
|
|
||||||
<alias field="commentaires" index="11" name=""/>
|
|
||||||
</aliases>
|
|
||||||
<defaults>
|
|
||||||
<default field="id_cen" applyOnUpdate="1" expression="concat(substr(maximum("id_cen"),0,-1), format_number(substr(maximum("id_cen"),7,8),0)+1)"/>
|
|
||||||
<default field="commune" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="dept" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="date_installation" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="modele_sonde" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="logiciel" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="frequence_sauvegarde" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="ligero" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="profondeur" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="contexte" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="salarie_referent" applyOnUpdate="0" expression=""/>
|
|
||||||
<default field="commentaires" applyOnUpdate="0" expression=""/>
|
|
||||||
</defaults>
|
|
||||||
<constraints>
|
|
||||||
<constraint field="id_cen" exp_strength="0" notnull_strength="1" constraints="3" unique_strength="1"/>
|
|
||||||
<constraint field="commune" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="dept" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="date_installation" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="modele_sonde" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="logiciel" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="frequence_sauvegarde" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="ligero" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="profondeur" exp_strength="0" notnull_strength="1" constraints="1" unique_strength="0"/>
|
|
||||||
<constraint field="contexte" exp_strength="0" notnull_strength="1" constraints="1" unique_strength="0"/>
|
|
||||||
<constraint field="salarie_referent" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
<constraint field="commentaires" exp_strength="0" notnull_strength="0" constraints="0" unique_strength="0"/>
|
|
||||||
</constraints>
|
|
||||||
<constraintExpressions>
|
|
||||||
<constraint field="id_cen" exp="" desc=""/>
|
|
||||||
<constraint field="commune" exp="" desc=""/>
|
|
||||||
<constraint field="dept" exp="" desc=""/>
|
|
||||||
<constraint field="date_installation" exp="" desc=""/>
|
|
||||||
<constraint field="modele_sonde" exp="" desc=""/>
|
|
||||||
<constraint field="logiciel" exp="" desc=""/>
|
|
||||||
<constraint field="frequence_sauvegarde" exp="" desc=""/>
|
|
||||||
<constraint field="ligero" exp="" desc=""/>
|
|
||||||
<constraint field="profondeur" exp="" desc=""/>
|
|
||||||
<constraint field="contexte" exp="" desc=""/>
|
|
||||||
<constraint field="salarie_referent" exp="" desc=""/>
|
|
||||||
<constraint field="commentaires" exp="" desc=""/>
|
|
||||||
</constraintExpressions>
|
|
||||||
<expressionfields/>
|
|
||||||
<attributeactions>
|
|
||||||
<defaultAction key="Canvas" value="{00000000-0000-0000-0000-000000000000}"/>
|
|
||||||
</attributeactions>
|
|
||||||
<attributetableconfig sortExpression="" actionWidgetStyle="dropDown" sortOrder="0">
|
|
||||||
<columns>
|
|
||||||
<column hidden="0" width="-1" type="field" name="id_cen"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="commune"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="dept"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="date_installation"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="modele_sonde"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="logiciel"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="frequence_sauvegarde"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="ligero"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="profondeur"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="contexte"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="salarie_referent"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="commentaires"/>
|
|
||||||
<column hidden="1" width="-1" type="actions"/>
|
|
||||||
</columns>
|
|
||||||
</attributetableconfig>
|
|
||||||
<conditionalstyles>
|
|
||||||
<rowstyles/>
|
|
||||||
<fieldstyles/>
|
|
||||||
</conditionalstyles>
|
|
||||||
<storedexpressions/>
|
|
||||||
<editform tolerant="1"></editform>
|
|
||||||
<editforminit/>
|
|
||||||
<editforminitcodesource>0</editforminitcodesource>
|
|
||||||
<editforminitfilepath></editforminitfilepath>
|
|
||||||
<editforminitcode><![CDATA[# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
QGIS forms can have a Python function that is called when the form is
|
|
||||||
opened.
|
|
||||||
|
|
||||||
Use this function to add extra logic to your forms.
|
|
||||||
|
|
||||||
Enter the name of the function in the "Python Init function"
|
|
||||||
field.
|
|
||||||
An example follows:
|
|
||||||
"""
|
|
||||||
from qgis.PyQt.QtWidgets import QWidget
|
|
||||||
|
|
||||||
def my_form_open(dialog, layer, feature):
|
|
||||||
geom = feature.geometry()
|
|
||||||
control = dialog.findChild(QWidget, "MyLineEdit")
|
|
||||||
]]></editforminitcode>
|
|
||||||
<featformsuppress>0</featformsuppress>
|
|
||||||
<editorlayout>generatedlayout</editorlayout>
|
|
||||||
<editable>
|
|
||||||
<field editable="1" name="commentaires"/>
|
|
||||||
<field editable="1" name="commune"/>
|
|
||||||
<field editable="1" name="contexte"/>
|
|
||||||
<field editable="1" name="date_installation"/>
|
|
||||||
<field editable="1" name="dept"/>
|
|
||||||
<field editable="1" name="frequence_sauvegarde"/>
|
|
||||||
<field editable="0" name="id_cen"/>
|
|
||||||
<field editable="1" name="ligero"/>
|
|
||||||
<field editable="1" name="logiciel"/>
|
|
||||||
<field editable="1" name="modele_sonde"/>
|
|
||||||
<field editable="1" name="profondeur"/>
|
|
||||||
<field editable="1" name="salarie_referent"/>
|
|
||||||
</editable>
|
|
||||||
<labelOnTop>
|
|
||||||
<field labelOnTop="0" name="commentaires"/>
|
|
||||||
<field labelOnTop="0" name="commune"/>
|
|
||||||
<field labelOnTop="0" name="contexte"/>
|
|
||||||
<field labelOnTop="0" name="date_installation"/>
|
|
||||||
<field labelOnTop="0" name="dept"/>
|
|
||||||
<field labelOnTop="0" name="frequence_sauvegarde"/>
|
|
||||||
<field labelOnTop="0" name="id_cen"/>
|
|
||||||
<field labelOnTop="0" name="ligero"/>
|
|
||||||
<field labelOnTop="0" name="logiciel"/>
|
|
||||||
<field labelOnTop="0" name="modele_sonde"/>
|
|
||||||
<field labelOnTop="0" name="profondeur"/>
|
|
||||||
<field labelOnTop="0" name="salarie_referent"/>
|
|
||||||
</labelOnTop>
|
|
||||||
<reuseLastValue>
|
|
||||||
<field reuseLastValue="0" name="commentaires"/>
|
|
||||||
<field reuseLastValue="0" name="commune"/>
|
|
||||||
<field reuseLastValue="0" name="contexte"/>
|
|
||||||
<field reuseLastValue="0" name="date_installation"/>
|
|
||||||
<field reuseLastValue="0" name="dept"/>
|
|
||||||
<field reuseLastValue="0" name="frequence_sauvegarde"/>
|
|
||||||
<field reuseLastValue="0" name="id_cen"/>
|
|
||||||
<field reuseLastValue="0" name="ligero"/>
|
|
||||||
<field reuseLastValue="0" name="logiciel"/>
|
|
||||||
<field reuseLastValue="0" name="modele_sonde"/>
|
|
||||||
<field reuseLastValue="0" name="profondeur"/>
|
|
||||||
<field reuseLastValue="0" name="salarie_referent"/>
|
|
||||||
</reuseLastValue>
|
|
||||||
<dataDefinedFieldProperties/>
|
|
||||||
<widgets/>
|
|
||||||
<previewExpression>"id_cen"</previewExpression>
|
|
||||||
<mapTip></mapTip>
|
|
||||||
<layerGeometryType>0</layerGeometryType>
|
|
||||||
</qgis>
|
|
||||||
@ -1,579 +0,0 @@
|
|||||||
<!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'>
|
|
||||||
<qgis labelsEnabled="0" hasScaleBasedVisibilityFlag="0" simplifyAlgorithm="0" version="3.22.9-Białowieża" simplifyDrawingTol="1" simplifyMaxScale="1" minScale="100000000" readOnly="0" simplifyDrawingHints="1" simplifyLocal="1" maxScale="0" styleCategories="AllStyleCategories" symbologyReferenceScale="-1">
|
|
||||||
<flags>
|
|
||||||
<Identifiable>1</Identifiable>
|
|
||||||
<Removable>1</Removable>
|
|
||||||
<Searchable>1</Searchable>
|
|
||||||
<Private>0</Private>
|
|
||||||
</flags>
|
|
||||||
<temporal fixedDuration="0" accumulate="0" startExpression="" durationField="" limitMode="0" startField="" enabled="0" endField="" durationUnit="min" endExpression="" mode="0">
|
|
||||||
<fixedRange>
|
|
||||||
<start></start>
|
|
||||||
<end></end>
|
|
||||||
</fixedRange>
|
|
||||||
</temporal>
|
|
||||||
<renderer-v2 symbollevels="0" forceraster="0" referencescale="-1" enableorderby="0" type="RuleRenderer">
|
|
||||||
<rules key="{928b307f-dbff-493f-b4c5-ac8d6da66bc4}">
|
|
||||||
<rule symbol="0" label="Zone bâtie et autre habitat artificiel" filter="nom_simplifie_hab = 'Zone bâtie et autre habitat artificiel'" key="{7ccc6fa5-4ed7-491d-b6b6-d3490840c433}"/>
|
|
||||||
</rules>
|
|
||||||
<symbols>
|
|
||||||
<symbol force_rhr="0" alpha="1" clip_to_extent="1" type="fill" name="0">
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="QString" value="" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option type="QString" value="collection" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
<layer pass="0" class="SimpleFill" enabled="1" locked="0">
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="border_width_map_unit_scale"/>
|
|
||||||
<Option type="QString" value="97,97,97,255" name="color"/>
|
|
||||||
<Option type="QString" value="bevel" name="joinstyle"/>
|
|
||||||
<Option type="QString" value="0,0" name="offset"/>
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="offset_map_unit_scale"/>
|
|
||||||
<Option type="QString" value="Pixel" name="offset_unit"/>
|
|
||||||
<Option type="QString" value="0,0,0,255" name="outline_color"/>
|
|
||||||
<Option type="QString" value="no" name="outline_style"/>
|
|
||||||
<Option type="QString" value="1" name="outline_width"/>
|
|
||||||
<Option type="QString" value="Pixel" name="outline_width_unit"/>
|
|
||||||
<Option type="QString" value="solid" name="style"/>
|
|
||||||
</Option>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
|
|
||||||
<prop v="97,97,97,255" k="color"/>
|
|
||||||
<prop v="bevel" k="joinstyle"/>
|
|
||||||
<prop v="0,0" k="offset"/>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
|
|
||||||
<prop v="Pixel" k="offset_unit"/>
|
|
||||||
<prop v="0,0,0,255" k="outline_color"/>
|
|
||||||
<prop v="no" k="outline_style"/>
|
|
||||||
<prop v="1" k="outline_width"/>
|
|
||||||
<prop v="Pixel" k="outline_width_unit"/>
|
|
||||||
<prop v="solid" k="style"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="QString" value="" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option type="QString" value="collection" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
</symbols>
|
|
||||||
</renderer-v2>
|
|
||||||
<customproperties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="int" value="0" name="embeddedWidgets/count"/>
|
|
||||||
<Option name="variableNames"/>
|
|
||||||
<Option name="variableValues"/>
|
|
||||||
</Option>
|
|
||||||
</customproperties>
|
|
||||||
<blendMode>0</blendMode>
|
|
||||||
<featureBlendMode>0</featureBlendMode>
|
|
||||||
<layerOpacity>1</layerOpacity>
|
|
||||||
<SingleCategoryDiagramRenderer attributeLegend="1" diagramType="Histogram">
|
|
||||||
<DiagramCategory penAlpha="255" lineSizeType="MM" backgroundColor="#ffffff" sizeType="MM" enabled="0" barWidth="5" penColor="#000000" rotationOffset="270" maxScaleDenominator="1e+08" direction="0" width="15" sizeScale="3x:0,0,0,0,0,0" lineSizeScale="3x:0,0,0,0,0,0" minimumSize="0" spacingUnitScale="3x:0,0,0,0,0,0" spacing="5" scaleBasedVisibility="0" labelPlacementMethod="XHeight" scaleDependency="Area" diagramOrientation="Up" opacity="1" showAxis="1" minScaleDenominator="0" backgroundAlpha="255" spacingUnit="MM" height="15" penWidth="0">
|
|
||||||
<fontProperties style="" description="Noto Sans,9,-1,5,50,0,0,0,0,0"/>
|
|
||||||
<axisSymbol>
|
|
||||||
<symbol force_rhr="0" alpha="1" clip_to_extent="1" type="line" name="">
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="QString" value="" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option type="QString" value="collection" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
<layer pass="0" class="SimpleLine" enabled="1" locked="0">
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="QString" value="0" name="align_dash_pattern"/>
|
|
||||||
<Option type="QString" value="square" name="capstyle"/>
|
|
||||||
<Option type="QString" value="5;2" name="customdash"/>
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="customdash_map_unit_scale"/>
|
|
||||||
<Option type="QString" value="MM" name="customdash_unit"/>
|
|
||||||
<Option type="QString" value="0" name="dash_pattern_offset"/>
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="dash_pattern_offset_map_unit_scale"/>
|
|
||||||
<Option type="QString" value="MM" name="dash_pattern_offset_unit"/>
|
|
||||||
<Option type="QString" value="0" name="draw_inside_polygon"/>
|
|
||||||
<Option type="QString" value="bevel" name="joinstyle"/>
|
|
||||||
<Option type="QString" value="35,35,35,255" name="line_color"/>
|
|
||||||
<Option type="QString" value="solid" name="line_style"/>
|
|
||||||
<Option type="QString" value="0.26" name="line_width"/>
|
|
||||||
<Option type="QString" value="MM" name="line_width_unit"/>
|
|
||||||
<Option type="QString" value="0" name="offset"/>
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="offset_map_unit_scale"/>
|
|
||||||
<Option type="QString" value="MM" name="offset_unit"/>
|
|
||||||
<Option type="QString" value="0" name="ring_filter"/>
|
|
||||||
<Option type="QString" value="0" name="trim_distance_end"/>
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="trim_distance_end_map_unit_scale"/>
|
|
||||||
<Option type="QString" value="MM" name="trim_distance_end_unit"/>
|
|
||||||
<Option type="QString" value="0" name="trim_distance_start"/>
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="trim_distance_start_map_unit_scale"/>
|
|
||||||
<Option type="QString" value="MM" name="trim_distance_start_unit"/>
|
|
||||||
<Option type="QString" value="0" name="tweak_dash_pattern_on_corners"/>
|
|
||||||
<Option type="QString" value="0" name="use_custom_dash"/>
|
|
||||||
<Option type="QString" value="3x:0,0,0,0,0,0" name="width_map_unit_scale"/>
|
|
||||||
</Option>
|
|
||||||
<prop v="0" k="align_dash_pattern"/>
|
|
||||||
<prop v="square" k="capstyle"/>
|
|
||||||
<prop v="5;2" k="customdash"/>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="customdash_map_unit_scale"/>
|
|
||||||
<prop v="MM" k="customdash_unit"/>
|
|
||||||
<prop v="0" k="dash_pattern_offset"/>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="dash_pattern_offset_map_unit_scale"/>
|
|
||||||
<prop v="MM" k="dash_pattern_offset_unit"/>
|
|
||||||
<prop v="0" k="draw_inside_polygon"/>
|
|
||||||
<prop v="bevel" k="joinstyle"/>
|
|
||||||
<prop v="35,35,35,255" k="line_color"/>
|
|
||||||
<prop v="solid" k="line_style"/>
|
|
||||||
<prop v="0.26" k="line_width"/>
|
|
||||||
<prop v="MM" k="line_width_unit"/>
|
|
||||||
<prop v="0" k="offset"/>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
|
|
||||||
<prop v="MM" k="offset_unit"/>
|
|
||||||
<prop v="0" k="ring_filter"/>
|
|
||||||
<prop v="0" k="trim_distance_end"/>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="trim_distance_end_map_unit_scale"/>
|
|
||||||
<prop v="MM" k="trim_distance_end_unit"/>
|
|
||||||
<prop v="0" k="trim_distance_start"/>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="trim_distance_start_map_unit_scale"/>
|
|
||||||
<prop v="MM" k="trim_distance_start_unit"/>
|
|
||||||
<prop v="0" k="tweak_dash_pattern_on_corners"/>
|
|
||||||
<prop v="0" k="use_custom_dash"/>
|
|
||||||
<prop v="3x:0,0,0,0,0,0" k="width_map_unit_scale"/>
|
|
||||||
<data_defined_properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="QString" value="" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option type="QString" value="collection" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</data_defined_properties>
|
|
||||||
</layer>
|
|
||||||
</symbol>
|
|
||||||
</axisSymbol>
|
|
||||||
</DiagramCategory>
|
|
||||||
</SingleCategoryDiagramRenderer>
|
|
||||||
<DiagramLayerSettings priority="0" zIndex="0" linePlacementFlags="18" placement="1" showAll="1" dist="0" obstacle="0">
|
|
||||||
<properties>
|
|
||||||
<Option type="Map">
|
|
||||||
<Option type="QString" value="" name="name"/>
|
|
||||||
<Option name="properties"/>
|
|
||||||
<Option type="QString" value="collection" name="type"/>
|
|
||||||
</Option>
|
|
||||||
</properties>
|
|
||||||
</DiagramLayerSettings>
|
|
||||||
<geometryOptions geometryPrecision="0" removeDuplicateNodes="0">
|
|
||||||
<activeChecks/>
|
|
||||||
<checkConfiguration type="Map">
|
|
||||||
<Option type="Map" name="QgsGeometryGapCheck">
|
|
||||||
<Option type="double" value="0" name="allowedGapsBuffer"/>
|
|
||||||
<Option type="bool" value="false" name="allowedGapsEnabled"/>
|
|
||||||
<Option type="QString" value="" name="allowedGapsLayer"/>
|
|
||||||
</Option>
|
|
||||||
</checkConfiguration>
|
|
||||||
</geometryOptions>
|
|
||||||
<legend showLabelLegend="0" type="default-vector"/>
|
|
||||||
<referencedLayers/>
|
|
||||||
<fieldConfiguration>
|
|
||||||
<field configurationFlags="None" name="id_polygone_carhab">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="code_hab_carhab">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="nom_complet_hab">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="nom_simplifie_hab">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="code_biotope">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="littoralite">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="etage_de_vegetation">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="ombroclimat">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="continentalite">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="variante_bioclimatique">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="acidite_edaphique">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="humidite_edaphique">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="enneigement">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="code_physio">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="nom_physio">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="physio_source">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="occupation">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="milieu">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="surface">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="cd_hab">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="id_sinp_evenement">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="id_sinp_habitat">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
<field configurationFlags="None" name="fid">
|
|
||||||
<editWidget type="TextEdit">
|
|
||||||
<config>
|
|
||||||
<Option/>
|
|
||||||
</config>
|
|
||||||
</editWidget>
|
|
||||||
</field>
|
|
||||||
</fieldConfiguration>
|
|
||||||
<aliases>
|
|
||||||
<alias index="0" field="id_polygone_carhab" name=""/>
|
|
||||||
<alias index="1" field="code_hab_carhab" name=""/>
|
|
||||||
<alias index="2" field="nom_complet_hab" name=""/>
|
|
||||||
<alias index="3" field="nom_simplifie_hab" name=""/>
|
|
||||||
<alias index="4" field="code_biotope" name=""/>
|
|
||||||
<alias index="5" field="littoralite" name=""/>
|
|
||||||
<alias index="6" field="etage_de_vegetation" name=""/>
|
|
||||||
<alias index="7" field="ombroclimat" name=""/>
|
|
||||||
<alias index="8" field="continentalite" name=""/>
|
|
||||||
<alias index="9" field="variante_bioclimatique" name=""/>
|
|
||||||
<alias index="10" field="acidite_edaphique" name=""/>
|
|
||||||
<alias index="11" field="humidite_edaphique" name=""/>
|
|
||||||
<alias index="12" field="enneigement" name=""/>
|
|
||||||
<alias index="13" field="code_physio" name=""/>
|
|
||||||
<alias index="14" field="nom_physio" name=""/>
|
|
||||||
<alias index="15" field="physio_source" name=""/>
|
|
||||||
<alias index="16" field="occupation" name=""/>
|
|
||||||
<alias index="17" field="milieu" name=""/>
|
|
||||||
<alias index="18" field="surface" name=""/>
|
|
||||||
<alias index="19" field="cd_hab" name=""/>
|
|
||||||
<alias index="20" field="id_sinp_evenement" name=""/>
|
|
||||||
<alias index="21" field="id_sinp_habitat" name=""/>
|
|
||||||
<alias index="22" field="fid" name=""/>
|
|
||||||
</aliases>
|
|
||||||
<defaults>
|
|
||||||
<default expression="" field="id_polygone_carhab" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="code_hab_carhab" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="nom_complet_hab" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="nom_simplifie_hab" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="code_biotope" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="littoralite" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="etage_de_vegetation" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="ombroclimat" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="continentalite" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="variante_bioclimatique" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="acidite_edaphique" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="humidite_edaphique" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="enneigement" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="code_physio" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="nom_physio" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="physio_source" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="occupation" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="milieu" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="surface" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="cd_hab" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="id_sinp_evenement" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="id_sinp_habitat" applyOnUpdate="0"/>
|
|
||||||
<default expression="" field="fid" applyOnUpdate="0"/>
|
|
||||||
</defaults>
|
|
||||||
<constraints>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="id_polygone_carhab" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="code_hab_carhab" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="nom_complet_hab" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="nom_simplifie_hab" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="code_biotope" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="littoralite" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="etage_de_vegetation" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="ombroclimat" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="continentalite" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="variante_bioclimatique" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="acidite_edaphique" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="humidite_edaphique" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="enneigement" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="code_physio" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="nom_physio" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="physio_source" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="occupation" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="milieu" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="surface" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="cd_hab" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="id_sinp_evenement" exp_strength="0"/>
|
|
||||||
<constraint constraints="0" notnull_strength="0" unique_strength="0" field="id_sinp_habitat" exp_strength="0"/>
|
|
||||||
<constraint constraints="3" notnull_strength="1" unique_strength="1" field="fid" exp_strength="0"/>
|
|
||||||
</constraints>
|
|
||||||
<constraintExpressions>
|
|
||||||
<constraint field="id_polygone_carhab" desc="" exp=""/>
|
|
||||||
<constraint field="code_hab_carhab" desc="" exp=""/>
|
|
||||||
<constraint field="nom_complet_hab" desc="" exp=""/>
|
|
||||||
<constraint field="nom_simplifie_hab" desc="" exp=""/>
|
|
||||||
<constraint field="code_biotope" desc="" exp=""/>
|
|
||||||
<constraint field="littoralite" desc="" exp=""/>
|
|
||||||
<constraint field="etage_de_vegetation" desc="" exp=""/>
|
|
||||||
<constraint field="ombroclimat" desc="" exp=""/>
|
|
||||||
<constraint field="continentalite" desc="" exp=""/>
|
|
||||||
<constraint field="variante_bioclimatique" desc="" exp=""/>
|
|
||||||
<constraint field="acidite_edaphique" desc="" exp=""/>
|
|
||||||
<constraint field="humidite_edaphique" desc="" exp=""/>
|
|
||||||
<constraint field="enneigement" desc="" exp=""/>
|
|
||||||
<constraint field="code_physio" desc="" exp=""/>
|
|
||||||
<constraint field="nom_physio" desc="" exp=""/>
|
|
||||||
<constraint field="physio_source" desc="" exp=""/>
|
|
||||||
<constraint field="occupation" desc="" exp=""/>
|
|
||||||
<constraint field="milieu" desc="" exp=""/>
|
|
||||||
<constraint field="surface" desc="" exp=""/>
|
|
||||||
<constraint field="cd_hab" desc="" exp=""/>
|
|
||||||
<constraint field="id_sinp_evenement" desc="" exp=""/>
|
|
||||||
<constraint field="id_sinp_habitat" desc="" exp=""/>
|
|
||||||
<constraint field="fid" desc="" exp=""/>
|
|
||||||
</constraintExpressions>
|
|
||||||
<expressionfields/>
|
|
||||||
<attributeactions>
|
|
||||||
<defaultAction key="Canvas" value="{00000000-0000-0000-0000-000000000000}"/>
|
|
||||||
</attributeactions>
|
|
||||||
<attributetableconfig sortExpression="" actionWidgetStyle="dropDown" sortOrder="0">
|
|
||||||
<columns>
|
|
||||||
<column hidden="0" width="-1" type="field" name="id_polygone_carhab"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="code_hab_carhab"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="nom_complet_hab"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="nom_simplifie_hab"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="code_biotope"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="littoralite"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="etage_de_vegetation"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="ombroclimat"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="continentalite"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="variante_bioclimatique"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="acidite_edaphique"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="humidite_edaphique"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="enneigement"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="code_physio"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="nom_physio"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="physio_source"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="occupation"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="milieu"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="surface"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="cd_hab"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="id_sinp_evenement"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="id_sinp_habitat"/>
|
|
||||||
<column hidden="0" width="-1" type="field" name="fid"/>
|
|
||||||
<column hidden="1" width="-1" type="actions"/>
|
|
||||||
</columns>
|
|
||||||
</attributetableconfig>
|
|
||||||
<conditionalstyles>
|
|
||||||
<rowstyles/>
|
|
||||||
<fieldstyles/>
|
|
||||||
</conditionalstyles>
|
|
||||||
<storedexpressions/>
|
|
||||||
<editform tolerant="1"></editform>
|
|
||||||
<editforminit/>
|
|
||||||
<editforminitcodesource>0</editforminitcodesource>
|
|
||||||
<editforminitfilepath></editforminitfilepath>
|
|
||||||
<editforminitcode><![CDATA[# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
Les formulaires QGIS peuvent avoir une fonction Python qui est appelée lorsque le formulaire est
|
|
||||||
ouvert.
|
|
||||||
|
|
||||||
Utilisez cette fonction pour ajouter une logique supplémentaire à vos formulaires.
|
|
||||||
|
|
||||||
Entrez le nom de la fonction dans le champ
|
|
||||||
"Fonction d'initialisation Python".
|
|
||||||
Voici un exemple:
|
|
||||||
"""
|
|
||||||
from qgis.PyQt.QtWidgets import QWidget
|
|
||||||
|
|
||||||
def my_form_open(dialog, layer, feature):
|
|
||||||
geom = feature.geometry()
|
|
||||||
control = dialog.findChild(QWidget, "MyLineEdit")
|
|
||||||
]]></editforminitcode>
|
|
||||||
<featformsuppress>0</featformsuppress>
|
|
||||||
<editorlayout>generatedlayout</editorlayout>
|
|
||||||
<editable>
|
|
||||||
<field editable="1" name="acidite_edaphique"/>
|
|
||||||
<field editable="1" name="cd_hab"/>
|
|
||||||
<field editable="1" name="code_biotope"/>
|
|
||||||
<field editable="1" name="code_hab_carhab"/>
|
|
||||||
<field editable="1" name="code_physio"/>
|
|
||||||
<field editable="1" name="continentalite"/>
|
|
||||||
<field editable="1" name="enneigement"/>
|
|
||||||
<field editable="1" name="etage_de_vegetation"/>
|
|
||||||
<field editable="1" name="fid"/>
|
|
||||||
<field editable="1" name="humidite_edaphique"/>
|
|
||||||
<field editable="1" name="id_polygone_carhab"/>
|
|
||||||
<field editable="1" name="id_sinp_evenement"/>
|
|
||||||
<field editable="1" name="id_sinp_habitat"/>
|
|
||||||
<field editable="1" name="littoralite"/>
|
|
||||||
<field editable="1" name="milieu"/>
|
|
||||||
<field editable="1" name="nom_complet_hab"/>
|
|
||||||
<field editable="1" name="nom_physio"/>
|
|
||||||
<field editable="1" name="nom_simplifie_hab"/>
|
|
||||||
<field editable="1" name="occupation"/>
|
|
||||||
<field editable="1" name="ombroclimat"/>
|
|
||||||
<field editable="1" name="physio_source"/>
|
|
||||||
<field editable="1" name="surface"/>
|
|
||||||
<field editable="1" name="variante_bioclimatique"/>
|
|
||||||
</editable>
|
|
||||||
<labelOnTop>
|
|
||||||
<field labelOnTop="0" name="acidite_edaphique"/>
|
|
||||||
<field labelOnTop="0" name="cd_hab"/>
|
|
||||||
<field labelOnTop="0" name="code_biotope"/>
|
|
||||||
<field labelOnTop="0" name="code_hab_carhab"/>
|
|
||||||
<field labelOnTop="0" name="code_physio"/>
|
|
||||||
<field labelOnTop="0" name="continentalite"/>
|
|
||||||
<field labelOnTop="0" name="enneigement"/>
|
|
||||||
<field labelOnTop="0" name="etage_de_vegetation"/>
|
|
||||||
<field labelOnTop="0" name="fid"/>
|
|
||||||
<field labelOnTop="0" name="humidite_edaphique"/>
|
|
||||||
<field labelOnTop="0" name="id_polygone_carhab"/>
|
|
||||||
<field labelOnTop="0" name="id_sinp_evenement"/>
|
|
||||||
<field labelOnTop="0" name="id_sinp_habitat"/>
|
|
||||||
<field labelOnTop="0" name="littoralite"/>
|
|
||||||
<field labelOnTop="0" name="milieu"/>
|
|
||||||
<field labelOnTop="0" name="nom_complet_hab"/>
|
|
||||||
<field labelOnTop="0" name="nom_physio"/>
|
|
||||||
<field labelOnTop="0" name="nom_simplifie_hab"/>
|
|
||||||
<field labelOnTop="0" name="occupation"/>
|
|
||||||
<field labelOnTop="0" name="ombroclimat"/>
|
|
||||||
<field labelOnTop="0" name="physio_source"/>
|
|
||||||
<field labelOnTop="0" name="surface"/>
|
|
||||||
<field labelOnTop="0" name="variante_bioclimatique"/>
|
|
||||||
</labelOnTop>
|
|
||||||
<reuseLastValue>
|
|
||||||
<field reuseLastValue="0" name="acidite_edaphique"/>
|
|
||||||
<field reuseLastValue="0" name="cd_hab"/>
|
|
||||||
<field reuseLastValue="0" name="code_biotope"/>
|
|
||||||
<field reuseLastValue="0" name="code_hab_carhab"/>
|
|
||||||
<field reuseLastValue="0" name="code_physio"/>
|
|
||||||
<field reuseLastValue="0" name="continentalite"/>
|
|
||||||
<field reuseLastValue="0" name="enneigement"/>
|
|
||||||
<field reuseLastValue="0" name="etage_de_vegetation"/>
|
|
||||||
<field reuseLastValue="0" name="fid"/>
|
|
||||||
<field reuseLastValue="0" name="humidite_edaphique"/>
|
|
||||||
<field reuseLastValue="0" name="id_polygone_carhab"/>
|
|
||||||
<field reuseLastValue="0" name="id_sinp_evenement"/>
|
|
||||||
<field reuseLastValue="0" name="id_sinp_habitat"/>
|
|
||||||
<field reuseLastValue="0" name="littoralite"/>
|
|
||||||
<field reuseLastValue="0" name="milieu"/>
|
|
||||||
<field reuseLastValue="0" name="nom_complet_hab"/>
|
|
||||||
<field reuseLastValue="0" name="nom_physio"/>
|
|
||||||
<field reuseLastValue="0" name="nom_simplifie_hab"/>
|
|
||||||
<field reuseLastValue="0" name="occupation"/>
|
|
||||||
<field reuseLastValue="0" name="ombroclimat"/>
|
|
||||||
<field reuseLastValue="0" name="physio_source"/>
|
|
||||||
<field reuseLastValue="0" name="surface"/>
|
|
||||||
<field reuseLastValue="0" name="variante_bioclimatique"/>
|
|
||||||
</reuseLastValue>
|
|
||||||
<dataDefinedFieldProperties/>
|
|
||||||
<widgets/>
|
|
||||||
<previewExpression>"nom_complet_hab"</previewExpression>
|
|
||||||
<mapTip></mapTip>
|
|
||||||
<layerGeometryType>2</layerGeometryType>
|
|
||||||
</qgis>
|
|
||||||
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
@ -89,7 +89,7 @@ def resources_path(*args):
|
|||||||
:return: Absolute path to the resources folder.
|
:return: Absolute path to the resources folder.
|
||||||
:rtype: str
|
:rtype: str
|
||||||
"""
|
"""
|
||||||
path = abspath(abspath(join(plugin_path(), "CenRa_Metabase\\tools")))
|
path = abspath(abspath(join(plugin_path(), "CenRa_FLUX\\tools")))
|
||||||
for item in args:
|
for item in args:
|
||||||
path = abspath(join(path, item))
|
path = abspath(join(path, item))
|
||||||
return path
|
return path
|
||||||
|
|||||||
252
CenRa_FLUX/tools/ui/CenRa_Flux_base.ui
Normal file
@ -0,0 +1,252 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>Dialog</class>
|
||||||
|
<widget class="QDialog" name="Dialog">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>910</width>
|
||||||
|
<height>800</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>910</width>
|
||||||
|
<height>800</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>910</width>
|
||||||
|
<height>800</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>SIG CEN-RA</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QComboBox" name="comboBox">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>260</x>
|
||||||
|
<y>130</y>
|
||||||
|
<width>171</width>
|
||||||
|
<height>22</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="editable">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="currentText">
|
||||||
|
<string notr="true"/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QComboBox" name="comboBox_2">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>370</x>
|
||||||
|
<y>80</y>
|
||||||
|
<width>171</width>
|
||||||
|
<height>22</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="editable">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="currentText">
|
||||||
|
<string notr="true"/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>345</x>
|
||||||
|
<y>10</y>
|
||||||
|
<width>221</width>
|
||||||
|
<height>71</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap>:/plugins/CenRa_FLUX/logo.jpg</pixmap>
|
||||||
|
</property>
|
||||||
|
<property name="scaledContents">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QPushButton" name="pushButton_2">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>370</x>
|
||||||
|
<y>750</y>
|
||||||
|
<width>171</width>
|
||||||
|
<height>23</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Charger les couches</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QTableWidget" name="tableWidget">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>30</x>
|
||||||
|
<y>170</y>
|
||||||
|
<width>850</width>
|
||||||
|
<height>281</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="selectionMode">
|
||||||
|
<enum>QAbstractItemView::SingleSelection</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sortingEnabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QTableWidget" name="tableWidget_2">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>30</x>
|
||||||
|
<y>550</y>
|
||||||
|
<width>850</width>
|
||||||
|
<height>181</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="selectionMode">
|
||||||
|
<enum>QAbstractItemView::SingleSelection</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QCommandLinkButton" name="commandLinkButton">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>400</x>
|
||||||
|
<y>470</y>
|
||||||
|
<width>61</width>
|
||||||
|
<height>61</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset>
|
||||||
|
<normaloff>:/plugins/CenRa_FLUX/arrow-bottom.png</normaloff>:/plugins/CenRa_FLUX/arrow-bottom.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>50</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QCommandLinkButton" name="commandLinkButton_2">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>460</x>
|
||||||
|
<y>470</y>
|
||||||
|
<width>61</width>
|
||||||
|
<height>61</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset>
|
||||||
|
<normaloff>:/plugins/CenRa_FLUX/arrow-up.png</normaloff>:/plugins/CenRa_FLUX/arrow-up.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>50</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLineEdit" name="lineEdit">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>480</x>
|
||||||
|
<y>130</y>
|
||||||
|
<width>171</width>
|
||||||
|
<height>21</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Recherche par mots-clés</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="readOnly">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="clearButtonEnabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>40</x>
|
||||||
|
<y>150</y>
|
||||||
|
<width>161</width>
|
||||||
|
<height>16</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<family>Calibri</family>
|
||||||
|
<pointsize>10</pointsize>
|
||||||
|
<italic>false</italic>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Liste des flux disponibles :</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>30</x>
|
||||||
|
<y>530</y>
|
||||||
|
<width>171</width>
|
||||||
|
<height>16</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<family>Calibri</family>
|
||||||
|
<pointsize>10</pointsize>
|
||||||
|
<italic>false</italic>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Flux sélectionné(s) à charger :</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<zorder>label_3</zorder>
|
||||||
|
<zorder>comboBox</zorder>
|
||||||
|
<zorder>comboBox_2</zorder>
|
||||||
|
<zorder>pushButton_2</zorder>
|
||||||
|
<zorder>tableWidget</zorder>
|
||||||
|
<zorder>tableWidget_2</zorder>
|
||||||
|
<zorder>commandLinkButton</zorder>
|
||||||
|
<zorder>commandLinkButton_2</zorder>
|
||||||
|
<zorder>lineEdit</zorder>
|
||||||
|
<zorder>label</zorder>
|
||||||
|
<zorder>label_2</zorder>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
332
CenRa_FLUX/tools/ui/CenRa_IssuesSend.ui
Normal file
@ -0,0 +1,332 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>CenRa_IssuesSend</class>
|
||||||
|
<widget class="QDialog" name="CenRa_IssuesSend">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>810</width>
|
||||||
|
<height>587</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>CEN-RA Metabase</string>
|
||||||
|
</property>
|
||||||
|
<property name="windowIcon">
|
||||||
|
<iconset>
|
||||||
|
<normaloff>icon.svg</normaloff>icon.svg</iconset>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="gridLayoutWidget">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>550</y>
|
||||||
|
<width>811</width>
|
||||||
|
<height>31</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout_2">
|
||||||
|
<item row="0" column="2">
|
||||||
|
<widget class="QPushButton" name="annuler_button">
|
||||||
|
<property name="text">
|
||||||
|
<string>Annuler</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="3">
|
||||||
|
<spacer name="horizontalSpacer_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QPushButton" name="ok_button">
|
||||||
|
<property name="text">
|
||||||
|
<string>Envoyer</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<widget class="QGroupBox" name="groupBox">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>10</x>
|
||||||
|
<y>10</y>
|
||||||
|
<width>791</width>
|
||||||
|
<height>531</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="title">
|
||||||
|
<string>Issues</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QLineEdit" name="titre_line">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>240</x>
|
||||||
|
<y>40</y>
|
||||||
|
<width>321</width>
|
||||||
|
<height>41</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QPlainTextEdit" name="messages_plain">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>10</x>
|
||||||
|
<y>101</y>
|
||||||
|
<width>571</width>
|
||||||
|
<height>421</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QFrame" name="frame">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>589</x>
|
||||||
|
<y>100</y>
|
||||||
|
<width>191</width>
|
||||||
|
<height>431</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="formLayoutWidget">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>9</x>
|
||||||
|
<y>9</y>
|
||||||
|
<width>341</width>
|
||||||
|
<height>411</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QFormLayout" name="formLayout">
|
||||||
|
<property name="labelAlignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="formAlignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing</set>
|
||||||
|
</property>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<spacer name="verticalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<spacer name="horizontalSpacer_3">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1">
|
||||||
|
<widget class="QCheckBox" name="check_bug">
|
||||||
|
<property name="text">
|
||||||
|
<string>Bug</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<spacer name="horizontalSpacer_4">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QCheckBox" name="check_aide">
|
||||||
|
<property name="text">
|
||||||
|
<string>Aide</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<spacer name="horizontalSpacer_7">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QCheckBox" name="check_question">
|
||||||
|
<property name="text">
|
||||||
|
<string>Question</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="0">
|
||||||
|
<spacer name="horizontalSpacer_6">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="1">
|
||||||
|
<widget class="QCheckBox" name="check_amelioration">
|
||||||
|
<property name="text">
|
||||||
|
<string>Amélioration</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="0">
|
||||||
|
<spacer name="horizontalSpacer_5">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="1">
|
||||||
|
<widget class="QCheckBox" name="check_autre">
|
||||||
|
<property name="text">
|
||||||
|
<string>Autre</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="6" column="0">
|
||||||
|
<spacer name="verticalSpacer_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>250</x>
|
||||||
|
<y>20</y>
|
||||||
|
<width>51</width>
|
||||||
|
<height>21</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<family>Arial</family>
|
||||||
|
<pointsize>14</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Titre:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>20</x>
|
||||||
|
<y>70</y>
|
||||||
|
<width>91</width>
|
||||||
|
<height>31</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<family>Arial</family>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Messages:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>600</x>
|
||||||
|
<y>70</y>
|
||||||
|
<width>91</width>
|
||||||
|
<height>31</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<family>Arial</family>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Sujet:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
<tabstops>
|
||||||
|
<tabstop>ok_button</tabstop>
|
||||||
|
<tabstop>annuler_button</tabstop>
|
||||||
|
</tabstops>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
@ -11,7 +11,7 @@
|
|||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>FLUX</string>
|
<string>Metabase</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowIcon">
|
<property name="windowIcon">
|
||||||
<iconset>
|
<iconset>
|
||||||
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 9.5 KiB |
BIN
CenRa_FLUX/tools/ui/logo.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
12
plugins.xml
@ -17,9 +17,9 @@
|
|||||||
<tags>cenra,postgis</tags>
|
<tags>cenra,postgis</tags>
|
||||||
</pyqgis_plugin>
|
</pyqgis_plugin>
|
||||||
|
|
||||||
<pyqgis_plugin name="CenRa_COPIE" version="1.5">
|
<pyqgis_plugin name="CenRa_COPIE" version="2.0">
|
||||||
<description><![CDATA[Dépôt pour les extensiont QGIS du CEN Rhone-Alpes, sur GitHub.]]></description>
|
<description><![CDATA[Dépôt pour les extensiont QGIS du CEN Rhone-Alpes, sur GitHub.]]></description>
|
||||||
<version>1.5</version>
|
<version>2.0</version>
|
||||||
<qgis_minimum_version>3.16</qgis_minimum_version>
|
<qgis_minimum_version>3.16</qgis_minimum_version>
|
||||||
<homepage>https://plateformesig.cenra-outils.org/</homepage>
|
<homepage>https://plateformesig.cenra-outils.org/</homepage>
|
||||||
<file_name>CenRa_COPIE.zip</file_name>
|
<file_name>CenRa_COPIE.zip</file_name>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
<download_url>https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS/releases/download/latest/CenRa_COPIE.zip</download_url>
|
<download_url>https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS/releases/download/latest/CenRa_COPIE.zip</download_url>
|
||||||
<uploaded_by>CEN-Rhone-Alpes</uploaded_by>
|
<uploaded_by>CEN-Rhone-Alpes</uploaded_by>
|
||||||
<create_date>2024-02-06</create_date>
|
<create_date>2024-02-06</create_date>
|
||||||
<update_date>2024-09-13</update_date>
|
<update_date>2024-10-22</update_date>
|
||||||
<experimental>False</experimental>
|
<experimental>False</experimental>
|
||||||
<deprecated>False</deprecated>
|
<deprecated>False</deprecated>
|
||||||
<tags>cenra,copie</tags>
|
<tags>cenra,copie</tags>
|
||||||
@ -51,9 +51,9 @@
|
|||||||
<tags>cenra,sicen</tags>
|
<tags>cenra,sicen</tags>
|
||||||
</pyqgis_plugin>
|
</pyqgis_plugin>
|
||||||
|
|
||||||
<pyqgis_plugin name="CenRa_FLUX" version="1.14">
|
<pyqgis_plugin name="CenRa_FLUX" version="2.0">
|
||||||
<description><![CDATA[Dépôt pour les extensiont QGIS du CEN Rhone-Alpes, sur GitHub.]]></description>
|
<description><![CDATA[Dépôt pour les extensiont QGIS du CEN Rhone-Alpes, sur GitHub.]]></description>
|
||||||
<version>1.14</version>
|
<version>2.0</version>
|
||||||
<qgis_minimum_version>3.16</qgis_minimum_version>
|
<qgis_minimum_version>3.16</qgis_minimum_version>
|
||||||
<homepage>https://plateformesig.cenra-outils.org/</homepage>
|
<homepage>https://plateformesig.cenra-outils.org/</homepage>
|
||||||
<file_name>CenRa_FLUX.zip</file_name>
|
<file_name>CenRa_FLUX.zip</file_name>
|
||||||
@ -62,7 +62,7 @@
|
|||||||
<download_url>https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS/releases/download/latest/CenRa_FLUX.zip</download_url>
|
<download_url>https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS/releases/download/latest/CenRa_FLUX.zip</download_url>
|
||||||
<uploaded_by>CEN-Rhone-Alpes</uploaded_by>
|
<uploaded_by>CEN-Rhone-Alpes</uploaded_by>
|
||||||
<create_date>2024-02-06</create_date>
|
<create_date>2024-02-06</create_date>
|
||||||
<update_date>2024-10-03</update_date>
|
<update_date>2024-10-22</update_date>
|
||||||
<experimental>False</experimental>
|
<experimental>False</experimental>
|
||||||
<deprecated>False</deprecated>
|
<deprecated>False</deprecated>
|
||||||
<tags>cenra,flux</tags>
|
<tags>cenra,flux</tags>
|
||||||
|
|||||||