From bfeb1c400b76d89e1cce43770cc95b3617e252ac Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Wed, 25 Jan 2023 14:33:22 +0100 Subject: [PATCH 01/28] Update metadata --- metadata.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.txt b/metadata.txt index 0599f64a6..c29ca67dd 100644 --- a/metadata.txt +++ b/metadata.txt @@ -4,10 +4,10 @@ qgisMinimumVersion=3.10 qgisMaximumVersion=3.99 description=Plugin to manage water networks (water supply, sewerage and urban drainage) using QGIS and PostGIS-PostgreSQL(from 9.5 to 14.x) about=Disclaimer: This plugin is released using the open source GNU-GPL3 license. Although a reasonable effort has been made to assure that the results obtained are correct, some of the capabilities provided by Giswater are experimental, therefore the development team and the Giswater Association are not responsible and assume no liability whatsoever for any results or any use made of the results obtained from the program, nor for any damages or litigation that result from the use of these programs for any purpose. -version=3.5.032 +version=3.5.033 author=David Erill, Luigi Pirelli, Natasa Cica, Nestor Ibañez, Adrian Valenciano, Barbara Rzepka, Sergi Muñoz, Josep Lluís Sala, Edgar Fusté, Albert Bofill, Sergi Maspons, Elies Bertran, Abel García Juanes, Xavier Torret -Changelog=Version 3.5.032 +Changelog=Version 3.5.033 tags= giswater, water networks, sewerage, urban drainage, EPANET, SWMM From e32285b7dbe6498cdac57406fa4523028e6e681d Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Thu, 26 Jan 2023 08:28:38 +0100 Subject: [PATCH 02/28] Bug fix: improve syntax error on generate sql execution --- core/shared/selector.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/shared/selector.py b/core/shared/selector.py index 5a0372b93..630e58a16 100644 --- a/core/shared/selector.py +++ b/core/shared/selector.py @@ -113,11 +113,11 @@ def get_selector(self, dialog, selector_type, filter=False, widget=None, text_fi selector_type = selector_type.strip('"') # Built querytext form = f'"currentTab":"{current_tab}"' - extras = f'"selectorType":"{selector_type}", "filterText":"{text_filter}",' + extras = f'"selectorType":"{selector_type}", "filterText":"{text_filter}" ' if aux_params: tools_gw.set_config_parser("selector_mincut", f"aux_params", f"{aux_params}", "user", "session") - extras = f"{extras}, {aux_params}, " - extras += f'"addSchema":"{global_vars.project_vars["add_schema"]}"' + extras = f"{extras}, {aux_params} " + extras += f', "addSchema":"{global_vars.project_vars["add_schema"]}"' body = tools_gw.create_body(form=form, extras=extras) json_result = tools_gw.execute_procedure('gw_fct_getselectors', body) From 8223e295e9903e20a32056ab5fdc09fba92161e6 Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Fri, 10 Feb 2023 12:04:10 +0100 Subject: [PATCH 03/28] Bug fix: filter table after update current psector --- core/shared/psector.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/shared/psector.py b/core/shared/psector.py index a0912f573..efef3139b 100644 --- a/core/shared/psector.py +++ b/core/shared/psector.py @@ -1645,6 +1645,7 @@ def update_current_psector(self, dialog, qtbl_psm): tools_qgis.show_info(message, dialog=dialog) self.fill_table(dialog, qtbl_psm, "v_ui_plan_psector") + self._filter_table(self.dlg_psector_mng, self.qtbl_psm, self.dlg_psector_mng.txt_name,self.dlg_psector_mng.chk_active, 'v_ui_plan_psector') tools_gw.set_tablemodel_config(dialog, qtbl_psm, "v_ui_plan_psector") self.set_label_current_psector(dialog) tools_gw.open_dialog(dialog) From 5729792b8cbdfe1fda70613befb89cec845e7645 Mon Sep 17 00:00:00 2001 From: Albert Bofill Date: Fri, 10 Feb 2023 13:09:29 +0100 Subject: [PATCH 04/28] Add config_params --- config/user_params.config | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/user_params.config b/config/user_params.config index bdcdb3eab..11d821fed 100644 --- a/config/user_params.config +++ b/config/user_params.config @@ -751,6 +751,11 @@ _gw_fct_graphanalytics_minsector_updatefeature = None _gw_fct_graphanalytics_minsector_geomparamupdate = None _gw_fct_graphanalytics_minsector_updatemapzone = None _gw_fct_graphanalytics_mapzones_advanced_commitchanges = None +_gw_fct_waterbalance_method = None +_gw_fct_capture_address_cmb_feature_type = None +_gw_fct_capture_address_cmb_layers = None +_gw_fct_capture_address_rbt_previous = None +_gw_fct_capture_address_catfeature = None [session.docker] _position = None From 42c92195b39b50734fe1a850e4aaf04fcab6d02b Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Fri, 10 Feb 2023 13:28:34 +0100 Subject: [PATCH 05/28] Bug fix: treat new element as new in custom form add_element button --- core/shared/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/shared/info.py b/core/shared/info.py index 951e58b9e..1a96b2f40 100644 --- a/core/shared/info.py +++ b/core/shared/info.py @@ -2894,7 +2894,7 @@ def _manage_element(self, dialog, element_id=None, feature=None): """ Execute action of button 33 """ elem = GwElement() - elem.get_element(False, feature, self.feature_type) + elem.get_element(True, feature, self.feature_type) elem.dlg_add_element.accepted.connect(partial(self._manage_element_new, dialog, elem)) elem.dlg_add_element.rejected.connect(partial(self._manage_element_new, dialog, elem)) From eb922f2674346d4b74f1f0092ecd75001c57f129 Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Fri, 10 Feb 2023 13:43:32 +0100 Subject: [PATCH 06/28] Bug fix from last commit --- core/shared/info.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/shared/info.py b/core/shared/info.py index 1a96b2f40..9788a54fe 100644 --- a/core/shared/info.py +++ b/core/shared/info.py @@ -2894,7 +2894,8 @@ def _manage_element(self, dialog, element_id=None, feature=None): """ Execute action of button 33 """ elem = GwElement() - elem.get_element(True, feature, self.feature_type) + new_element = element_id is None + elem.get_element(new_element, feature, self.feature_type) elem.dlg_add_element.accepted.connect(partial(self._manage_element_new, dialog, elem)) elem.dlg_add_element.rejected.connect(partial(self._manage_element_new, dialog, elem)) From 5447f93c75bb65edb8bc3342d00bbaa4592fdea5 Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Tue, 14 Feb 2023 12:36:29 +0100 Subject: [PATCH 07/28] Enhancement: manage chk_active and btn_toggle_status on dscneario manager --- core/shared/psector.py | 16 +---- core/toolbars/epa/dscenario_manager_btn.py | 67 ++++++++++++++++--- core/ui/toolbars/epa/dscenario_manager.ui | 76 +++++++++++++--------- 3 files changed, 107 insertions(+), 52 deletions(-) diff --git a/core/shared/psector.py b/core/shared/psector.py index efef3139b..e30e50d06 100644 --- a/core/shared/psector.py +++ b/core/shared/psector.py @@ -1602,7 +1602,7 @@ def set_toggle_active(self, dialog, qtbl_psm): selected_list = qtbl_psm.selectionModel().selectedRows() if len(selected_list) == 0: message = "Any record selected" - tools_qgis.show_warning(message, dialog=self.dlg_psector_mng) + tools_qgis.show_warning(message, dialog=dialog) return for i in range(0, len(selected_list)): row = selected_list[i].row() @@ -1611,7 +1611,7 @@ def set_toggle_active(self, dialog, qtbl_psm): active = qtbl_psm.model().record(row).value("active") if psector_id == self.current_psector_id[0]: message = f"The active state of the current psector cannot be changed. Current psector: {self.current_psector_id[1]}" - tools_qgis.show_warning(message, dialog=self.dlg_psector_mng) + tools_qgis.show_warning(message, dialog=dialog) return if active: sql += f"UPDATE plan_psector SET active = False WHERE psector_id = {psector_id};" @@ -1635,7 +1635,7 @@ def update_current_psector(self, dialog, qtbl_psm): active = qtbl_psm.model().record(row).value("active") if active is False: message = f"Cannot set the current psector of an inactive psector. You must activate it before." - tools_qgis.show_warning(message, dialog=self.dlg_psector_mng) + tools_qgis.show_warning(message, dialog=dialog) return aux_widget = QLineEdit() aux_widget.setText(str(psector_id)) @@ -1717,16 +1717,6 @@ def _filter_table(self, dialog, table, widget_txt, widget_chk, tablename): else: self.fill_table(dialog, table, tablename) - def filter_by_active(self, dialog, table): - - chk_active_state = dialog.chk_active.isChecked() - expr = f" active is {chk_active_state}" - - # Refresh model with selected filter - table.model().setFilter(expr) - table.model().select() - - def charge_psector(self, qtbl_psm): diff --git a/core/toolbars/epa/dscenario_manager_btn.py b/core/toolbars/epa/dscenario_manager_btn.py index e8ab22969..b37f39f58 100644 --- a/core/toolbars/epa/dscenario_manager_btn.py +++ b/core/toolbars/epa/dscenario_manager_btn.py @@ -21,7 +21,7 @@ from ...utils import tools_gw from ...models.item_delegates import ReadOnlyDelegate, EditableDelegate from .... import global_vars -from ....lib import tools_qgis, tools_qt, tools_db +from ....lib import tools_qgis, tools_qt, tools_db, tools_os class GwDscenarioManagerButton(GwAction): @@ -73,15 +73,19 @@ def _open_dscenario_manager(self): # Apply filter validator self.filter_name = self.dlg_dscenario_manager.findChild(QLineEdit, 'txt_name') + self.chk_active = self.dlg_dscenario_manager.findChild(QCheckBox, 'chk_active') reg_exp = QRegExp('([^"\'\\\\])*') # Don't allow " or ' or \ because it breaks the query self.filter_name.setValidator(QRegExpValidator(reg_exp)) # Fill table self.tbl_dscenario = self.dlg_dscenario_manager.findChild(QTableView, 'tbl_dscenario') - self._fill_manager_table() + self._filter_table(self.dlg_dscenario_manager, self.dlg_dscenario_manager.txt_name, + self.dlg_dscenario_manager.chk_active) # Connect main dialog signals - self.dlg_dscenario_manager.txt_name.textChanged.connect(partial(self._fill_manager_table)) + self.dlg_dscenario_manager.txt_name.textChanged.connect(partial(self._filter_table, self.dlg_dscenario_manager, + self.dlg_dscenario_manager.txt_name, + self.dlg_dscenario_manager.chk_active)) self.dlg_dscenario_manager.btn_duplicate.clicked.connect(partial(self._duplicate_selected_dscenario)) self.dlg_dscenario_manager.btn_update.clicked.connect(partial(self._open_toolbox_function, 3042)) self.dlg_dscenario_manager.btn_delete.clicked.connect(partial(self._delete_selected_dscenario)) @@ -92,19 +96,66 @@ def _open_dscenario_manager(self): self.dlg_dscenario_manager.finished.connect(partial(tools_gw.save_settings, self.dlg_dscenario_manager)) self.dlg_dscenario_manager.finished.connect(partial(self.save_user_values)) + self.dlg_dscenario_manager.chk_active.stateChanged.connect(partial(self._filter_table, self.dlg_dscenario_manager, + self.dlg_dscenario_manager.txt_name, + self.dlg_dscenario_manager.chk_active)) + self.dlg_dscenario_manager.btn_toggle_active.clicked.connect( + partial(self.set_toggle_active, self.dlg_dscenario_manager, self.tbl_dscenario)) + # Open dialog tools_gw.open_dialog(self.dlg_dscenario_manager, 'dscenario_manager') + def set_toggle_active(self, dialog, qtbl): + + sql = "" + selected_list = qtbl.selectionModel().selectedRows() + if len(selected_list) == 0: + message = "Any record selected" + tools_qgis.show_warning(message, dialog=dialog) + return + for index in selected_list: + + column_index = tools_qt.get_col_index_by_col_name(self.tbl_dscenario, 'dscenario_id') + dscenario_id = index.sibling(index.row(), column_index).data() + + column_index = tools_qt.get_col_index_by_col_name(self.tbl_dscenario, 'active') + active = index.sibling(index.row(), column_index).data() + + if tools_os.set_boolean(active): + sql += f"UPDATE v_edit_cat_dscenario SET active = False WHERE dscenario_id = {dscenario_id};" + else: + sql += f"UPDATE v_edit_cat_dscenario SET active = True WHERE dscenario_id = {dscenario_id};" + + tools_db.execute_sql(sql) + + self._filter_table(dialog, dialog.txt_name, dialog.chk_active) + + + def _filter_table(self, dialog, widget_txt, widget_chk): + + result_select = tools_qt.get_text(dialog, widget_txt) + inactive_select = widget_chk.isChecked() + + expr = "" + + if not inactive_select: + expr += f'"active":true' + + self._fill_manager_table(filter_name=result_select, filter_aux=expr) + + def save_user_values(self): pass - def _get_list(self, table_name='v_ui_cat_dscenario', filter_name="", filter_id=None): + def _get_list(self, table_name='v_ui_cat_dscenario', filter_name="", filter_aux="", filter_id=None): """ Mount and execute the query for gw_fct_getlist """ feature = f'"tableName":"{table_name}"' filter_fields = f'"limit": -1, "name": {{"filterSign":"ILIKE", "value":"{filter_name}"}}' + if filter_aux is not "": + filter_fields += f', {filter_aux}' if filter_id is not None: filter_fields += f', "dscenario_id": {{"filterSign":"=", "value":"{filter_id}"}}' body = tools_gw.create_body(feature=feature, filter_fields=filter_fields) @@ -118,10 +169,10 @@ def _get_list(self, table_name='v_ui_cat_dscenario', filter_name="", filter_id=N return complet_list - def _fill_manager_table(self, filter_name=""): + def _fill_manager_table(self, filter_name="", filter_aux=""): """ Fill dscenario manager table with data from v_ui_cat_dscenario """ - complet_list = self._get_list("v_ui_cat_dscenario", filter_name) + complet_list = self._get_list("v_ui_cat_dscenario", filter_name, filter_aux=filter_aux) if complet_list is False: return False, False @@ -172,7 +223,7 @@ def _open_toolbox_function(self, function, signal=None, connect=None): toolbox_btn = GwToolBoxButton(None, None, None, None, None) if connect is None: - connect = [partial(self._fill_manager_table, self.filter_name.text()), partial(tools_gw.refresh_selectors)] + connect = [partial(self._filter_table, self.dlg_dscenario_manager, self.filter_name, self.chk_active), partial(tools_gw.refresh_selectors)] else: if type(connect) != list: connect = [connect] @@ -222,7 +273,7 @@ def _delete_selected_dscenario(self): tools_db.execute_sql(sql) # Refresh tableview - self._fill_manager_table(self.filter_name.text()) + self._filter_table(self.dlg_dscenario_manager, self.filter_name, self.chk_active) # endregion diff --git a/core/ui/toolbars/epa/dscenario_manager.ui b/core/ui/toolbars/epa/dscenario_manager.ui index 7e393c1a1..32a7fbb4b 100644 --- a/core/ui/toolbars/epa/dscenario_manager.ui +++ b/core/ui/toolbars/epa/dscenario_manager.ui @@ -20,26 +20,6 @@ - - - - Filter by: Dscenario name - - - - - - - Qt::Horizontal - - - - 5000 - 20 - - - - @@ -66,7 +46,14 @@ - + + + + Filter by: Dscenario name + + + + @@ -79,21 +66,21 @@ - + QAbstractItemView::SingleSelection - - + + - Close + Update - + @@ -119,16 +106,43 @@ - + - Update + Duplicate - - + + - Duplicate + Close + + + + + + + Show inactive + + + + + + + Qt::Horizontal + + + + 5000 + 20 + + + + + + + + Toggle active From fe00e455311286d3e22550fd0e2ef2bf67c0c4c8 Mon Sep 17 00:00:00 2001 From: Albert Bofill Date: Tue, 14 Feb 2023 13:21:55 +0100 Subject: [PATCH 08/28] Add config_params --- config/user_params.config | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/user_params.config b/config/user_params.config index 11d821fed..7973fcd96 100644 --- a/config/user_params.config +++ b/config/user_params.config @@ -756,6 +756,13 @@ _gw_fct_capture_address_cmb_feature_type = None _gw_fct_capture_address_cmb_layers = None _gw_fct_capture_address_rbt_previous = None _gw_fct_capture_address_catfeature = None +_gw_fct_setclosestaddress_cmb_feature_type = None +_gw_fct_setclosestaddress_cmb_layers = None +_gw_fct_setclosestaddress_rbt_previous = None +_gw_fct_setclosestaddress_catfeature = None +_gw_fct_setclosestaddress_fieldtoupdate = None +_gw_fct_setclosestaddress_searchbuffer = None +_gw_fct_setclosestaddress_updatevalues = None [session.docker] _position = None From 41e54f40d946ac29579bee1b068781b631a97adf Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Tue, 14 Feb 2023 16:50:11 +0100 Subject: [PATCH 09/28] Bug fix: enable set parent id action for arcs --- core/shared/info.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/shared/info.py b/core/shared/info.py index 9788a54fe..d3771b258 100644 --- a/core/shared/info.py +++ b/core/shared/info.py @@ -4332,8 +4332,9 @@ def _get_id(self, dialog, action, option, emit_point, child_type, point, event): widget = dialog.findChild(QWidget, f"{options[option][1]}") widget.setFocus() tools_qt.set_widget_text(dialog, widget, str(feat_id)) - # Insert result into self.my_json regardless of widget editing - self.my_json[f"{option}_id"] = f"{feat_id}" + if action == self.action_get_arc_id: + # Insert result into self.my_json regardless of widget editing + self.my_json[f"{option}_id"] = f"{feat_id}" elif option == 'set_to_arc': # functions called in -> getattr(self, options[option][0])(feat_id, child_type) # def _set_to_arc(self, feat_id, child_type) From 54b3b236e35cb2602efeeb419932832322310105 Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Tue, 14 Feb 2023 17:25:08 +0100 Subject: [PATCH 10/28] Bug fix: manage order_by time on go2epa selector --- core/toolbars/epa/go2epa_selector_button.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/core/toolbars/epa/go2epa_selector_button.py b/core/toolbars/epa/go2epa_selector_button.py index 7a56cb6be..1566d0921 100644 --- a/core/toolbars/epa/go2epa_selector_button.py +++ b/core/toolbars/epa/go2epa_selector_button.py @@ -292,13 +292,11 @@ def _populate_time(self, combo_result, combo_time): else: field = "resulttime" - sql = (f"SELECT DISTINCT {field}, {field} " - f"FROM rpt_arc " - f"WHERE result_id ILIKE '{result_id}' " - f"ORDER BY {field};") + sql = (f"SELECT DISTINCT {field}, {field}, split_part({field}, ':', 1)::int as split_hour " + f"FROM rpt_arc WHERE result_id ILIKE '{result_id}' order by split_hour") rows = tools_db.get_rows(sql, add_empty_row=True) - tools_qt.fill_combo_values(combo_time, rows) + tools_qt.fill_combo_values(combo_time, rows, sort_combo=False) def _populate_date_time(self, combo_date): From 82473981195ce373cd023a11e41a4ad5d0b292b0 Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Wed, 15 Feb 2023 08:32:10 +0100 Subject: [PATCH 11/28] Minor bug fix: get text from qlineedit --- core/toolbars/epa/go2epa_manager_button.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/toolbars/epa/go2epa_manager_button.py b/core/toolbars/epa/go2epa_manager_button.py index 5f4b56815..b5687b95e 100644 --- a/core/toolbars/epa/go2epa_manager_button.py +++ b/core/toolbars/epa/go2epa_manager_button.py @@ -257,7 +257,7 @@ def _multi_rows_delete(self, widget, table_name, column_id): sql = f"DELETE FROM {table_name}" sql += f" WHERE {column_id} IN ({list_id})" tools_db.execute_sql(sql) - self._fill_manager_table(self.dlg_manager.txt_result_id.currentText()) + self._fill_manager_table(self.dlg_manager.txt_result_id.text()) def _epa2data(self, widget, column_id): From 4b9f27d315d9e3f7f3271ccaa9b104cd019d13aa Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Wed, 15 Feb 2023 12:47:38 +0100 Subject: [PATCH 12/28] Improve bug fix: manage exception on close disconnect signal --- core/utils/tools_gw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/utils/tools_gw.py b/core/utils/tools_gw.py index ac07c51df..ca4280178 100644 --- a/core/utils/tools_gw.py +++ b/core/utils/tools_gw.py @@ -846,7 +846,7 @@ def fill_tab_log(dialog, data, force_tab=True, reset_text=True, tab_idx=1, call_ try: dialog.btn_accept.disconnect() dialog.btn_accept.hide() - except AttributeError: + except: pass try: From 0021756752f6ae5c4397eec35011126b2a5ebf1d Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Fri, 17 Feb 2023 12:52:19 +0100 Subject: [PATCH 13/28] Bug fix: allow psectors with same name but different expl_id --- core/shared/psector.py | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/core/shared/psector.py b/core/shared/psector.py index e30e50d06..7d7d3def9 100644 --- a/core/shared/psector.py +++ b/core/shared/psector.py @@ -448,6 +448,7 @@ def get_psector(self, psector_id=None, list_coord=None): self.dlg_plan_psector.tab_feature.currentChanged.connect( partial(self._manage_tab_feature_buttons)) self.dlg_plan_psector.name.textChanged.connect(partial(self.enable_relation_tab, 'plan_psector')) + self.dlg_plan_psector.expl_id.currentIndexChanged.connect(partial(self.enable_relation_tab, 'plan_psector')) viewname = 'v_edit_plan_psector_x_other' self.dlg_plan_psector.txt_name.textChanged.connect( partial(self.query_like_widget_text, self.dlg_plan_psector, self.dlg_plan_psector.txt_name, @@ -859,7 +860,8 @@ def enable_buttons(self, enabled): def enable_relation_tab(self, tablename): psector_name = f"{tools_qt.get_text(self.dlg_plan_psector, self.dlg_plan_psector.name)}" - sql = f"SELECT name FROM {tablename} WHERE LOWER(name) = '{psector_name}'" + psector_expl = tools_qt.get_combo_value(self.dlg_plan_psector, "expl_id", 0) + sql = f"SELECT name FROM {tablename} WHERE LOWER(name) = '{psector_name}' AND expl_id = {psector_expl}" rows = tools_db.get_rows(sql) if not rows: if self.dlg_plan_psector.name.text() != '': @@ -1011,11 +1013,11 @@ def reset_model_psector(self, feature_type): widget.setModel(None) - def check_name(self, psector_name): + def check_name(self, psector_name, expl_id): """ Check if name of new psector exist or not """ - sql = (f"SELECT name FROM plan_psector" - f" WHERE name = '{psector_name}'") + sql = (f"SELECT name, expl_id FROM plan_psector" + f" WHERE name = '{psector_name}' AND expl_id = '{expl_id}'") row = tools_db.get_row(sql) if row is None: return False @@ -1030,14 +1032,20 @@ def insert_or_update_new_psector(self, tablename, close_dlg=False): tools_qgis.show_warning(message, parameter='Name', dialog=self.dlg_plan_psector) return + expl_id = tools_qt.get_combo_value(self.dlg_plan_psector, "expl_id", 0) + if expl_id == -1: + message = "Mandatory field is missing. Please, set a value" + tools_qgis.show_warning(message, parameter='Exploitation', dialog=self.dlg_plan_psector) + return + rotation = tools_qt.get_text(self.dlg_plan_psector, "rotation", return_string_null=False) if rotation == "": tools_qt.set_widget_text(self.dlg_plan_psector, self.dlg_plan_psector.rotation, 0) - name_exist = self.check_name(psector_name) + name_exist = self.check_name(psector_name, expl_id) if name_exist and not self.update: - message = "The name is current in use" + message = "The name is currently in use" tools_qgis.show_warning(message, dialog=self.dlg_plan_psector) return else: From 904f2f5d5d7477ab40dc41413b4eabfcf761bac6 Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Mon, 20 Feb 2023 11:30:44 +0100 Subject: [PATCH 14/28] Update project: show message if failed --- core/threads/project_schema_update.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/threads/project_schema_update.py b/core/threads/project_schema_update.py index aa53451e0..409d83034 100644 --- a/core/threads/project_schema_update.py +++ b/core/threads/project_schema_update.py @@ -9,7 +9,7 @@ from .task import GwTask from ..utils import tools_gw -from ...lib import tools_qt, tools_log, tools_db +from ...lib import tools_qt, tools_log, tools_db, tools_qgis class GwUpdateSchemaTask(GwTask): @@ -76,6 +76,11 @@ def finished(self, result): tools_gw.fill_tab_log(self.admin.dlg_readsql_show_info, self.status['body']['data'], True, True, 1) else: tools_log.log_warning(f"Key not found: 'body'") + else: + tools_qgis.show_warning("Update project failed.", dialog=self.admin.dlg_readsql_show_info) + # Show message + status = (self.admin.error_count == 0) + self.admin._manage_result_message(status, parameter="Update project") # Reset count error variable to 0 self.admin.error_count = 0 From 8becb3b675d2fbd2684597479e7e612e8663b50e Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Mon, 20 Feb 2023 17:07:50 +0100 Subject: [PATCH 15/28] Execute gw_fct_admin_reset_sequences on update project --- core/admin/admin_btn.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/core/admin/admin_btn.py b/core/admin/admin_btn.py index bfde79988..0d229c20e 100644 --- a/core/admin/admin_btn.py +++ b/core/admin/admin_btn.py @@ -283,6 +283,18 @@ def execute_last_process(self, new_project=False, schema_name=None, schema_type= return result + def execute_reset_sequences(self, schema_name=None): + """ Execute last process function """ + + self.schema_name = schema_name + + result = tools_gw.execute_procedure('gw_fct_admin_reset_sequences', self.schema_name, commit=False) + if result is None or ('status' in result and result['status'] == 'Failed'): + self.error_count = self.error_count + 1 + + return result + + def execute_import_inp_data(self, project_name, project_type): """ Executed when option 'Import INP data' has been selected """ @@ -372,6 +384,8 @@ def load_updates(self, project_type=None, update_changelog=False, schema_name=No self.task1.setProgress(60) if status: status = self.execute_last_process(schema_name=schema_name, locale=True) + if status: + status = self.execute_reset_sequences(schema_name=schema_name) self.task1.setProgress(100) if update_changelog is False: From 125ec4045fdc2566f21d100d107a6628f3c3b0dd Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Tue, 21 Feb 2023 15:14:21 +0100 Subject: [PATCH 16/28] Bug fix: improve transalte files for py_message --- core/admin/i18n_generator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/admin/i18n_generator.py b/core/admin/i18n_generator.py index 30ba69b27..b760bd4ca 100644 --- a/core/admin/i18n_generator.py +++ b/core/admin/i18n_generator.py @@ -197,6 +197,7 @@ def _create_py_files(self): line = '\t\n\n' line += '\t\n' line += '\t\n' + line += f'\t\t{self.scode}\n' ts_file.write(line) # Create children for message From e60e99e27ba2762af259e5c8f541233a15f74da0 Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Tue, 21 Feb 2023 15:17:19 +0100 Subject: [PATCH 17/28] Update transaltion files --- i18n/giswater_ca_ES.qm | Bin 158139 -> 159691 bytes i18n/giswater_ca_ES.ts | 1 + i18n/giswater_es_ES.qm | Bin 162342 -> 163894 bytes i18n/giswater_es_ES.ts | 1 + 4 files changed, 2 insertions(+) diff --git a/i18n/giswater_ca_ES.qm b/i18n/giswater_ca_ES.qm index 9edf0732e57363baf2706a8c9f3d1f2e0a1eb094..d076d709c8cc0cd388c5d605217315ddc3ba55a4 100644 GIT binary patch delta 18626 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 L{?ZM^_R;?X8?RF< delta 17303 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 wvhPRy@B5L + giswater The selected INP file does not match with a 'UD' project. Please check it before continuing... The selected INP file does not match with a 'UD' project. Please check it before continuing... diff --git a/i18n/giswater_es_ES.qm b/i18n/giswater_es_ES.qm index b7e9cae5fa6d423a080e4d0f109aa38e38d18945..27a1622c532e60e5c84d12375df19e734a0a2ec3 100644 GIT binary patch delta 18396 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 delta 17515 zcmY+LbzD@<`}eOo+q-9XRmx66MNt72P_Y296U6`wP%yASMbtIG4nkN96AK%=Q53}% z#cn~xx<$mgjo)X_@V%ec^AGQH=A4}~bInx~9Ga=!@6!Pmto>NG$kq3#cogkOaU&usv+^F%9IYi+)at|C$^eBy* zt-Vd;Q9z#6+=xxRB~eh=P?zN;#E#@q_l;2`$X-&9wdr^sM!oSad-9V4_xB?9ss{}| zFzn-_d+N+WhV5F1pJ!rLAo zs#{2-oY3NtJ81m&c%r27G@(ZYqQAWIbUx=;8_w}|oYAc~7k%Me=FFM+ zo^$0}iZ!7pY~u@Fuw^vo&UT!cdd|ZcoF_v#Z@1@s*n;!9C+Ev?oUh(-zMIJT={VasH`7CW|NqmMs+s>LHxQ2b@+zIjhPz9T}%{Jx-U|oJ}@S?1=WnmK$ki>nLK& zKG57t)rs0)rv+iIL_2I~@yz|irVpiMW1zIve^YYya-x}!gBE>pd zooz$R?jmQ=T3TBHR?#Y-)*X!_^2(3T>Fr-0+ z^zctIF;fZJSc&LlO?skS03N3op1+8FnNF`z_$vmF7znnx?U4qoawI8aVgw zWX*RrB2r#so=tk2h+RI#TH5U)R@nSe01Tue1(CDYE|K$`Sjy7%UIwvi?s|&+zpu_`*bDH%3bo z^z&KB1^j-`5jMom^pe=TCv51uw#0tLgYCexY&gq=Rdiz`5=)5=&0yjED`L#{v51@Q zXz(I7_8c0ttvVZ5*O}-=RW^Ae8WQ`S#rP|UO?<;*9tGgNKsI#;9M?a~*tBu*kZwL~ z=2Hx{s}GwM(;n|-vRS5u*N9c$$7Wf$(TOu>DChmFY|c3sq8m@yocm$;p^Pnlhq2X{ zu%*ZP5gqBwmY#v@KA6l_^&Utp>?d1w`v8=22wSaBCVJnHt-kz)*!E<$=3)WSf{koV z36#5sA4{8%LagN=X4;ho7wm9>9f?JdXxf(@A67`TF`4Bwgbv)j!>%lY7GJN+?k>1Z z%)2^!Pyyu?7O}@Ypv{{nv4X;IqG=}f)@vhz%2f7l1;)B_Jp1x-Gtu3U4t^b;s_?@$g$(mnywBu~` zmUD9i=b7U|t$h=SoV|o5LC>K~qXf@JsAx=E!E;3>u~D^zmXq*2WuruPY_-sGTOSO? z0>L}r4J7eEXse1K@>K~wy&%ca)djy)fds)>@Y{W!$aH+O;Q!YLB55pi3Pz7lxeMLr zw;(ony$~Rcu}%nVH<74*fDkwhqFs{2xj$0q?~k4cb%p+Sni5^)y25{D{ zB7~XH5?22%FK8Ua>D7v}Z60UGMx3E-Imhq@v$2c${cKcZsb^UR=c*B$o7!{ke8_o( zcYvMz$nP(W6im_&Z?EMAucvap;}T%S2I*cP;#B|Qbgj+V)Q;2Zs4zSL4yk=*Vff&K z2vV^^1cDRG*&sxGgK{4B7Dk?g^<1a`BI;e}1j6%Pm~FxZT;qjfU?KP!d`0YHePQGS z*!hY)5K2`29p_4c^RSyR%Ks{{8S8{mG5FBNt(*_l!szlyXsjA?R<;qwj>GTQISS*N zbw|*#5++nc+)sEXOpHZC>X~i|ljbAMUi*;q^KXd)Jr^b=3?pXsnX_(VPM^!dy+*E^ei^#ca3TN?o&eFP^-;+6i^_R%lY)-`>PE{1A)|b<=gADt+)JD$*?@^R zV1_BO0atDjTT@>)sGpoze5x$u3c_T_8d+E$G{EVH)IQq(>4&c3~ zYh_V|NXI>oaK73uo3!&Bu}=Q7Nqg|S9zn9$GttDFOpwiJ?u%LTZrO}Y7Mdo@=1MQl zm(7)4+#*{LmqzriP?k_76dtUaETJLBv_^GK?+>zs-VmWxF{k4;S<*oVVr%Qml4D;J zU0x|mmFg*xneE#Xy&NH1u_vFXv_Q5h;x-A!HnI)AUogb2Wm`1yB$z5}=NFYaaoQKl zwpc3Y*+#atc@EJwTiG_Z1(*-y$adXughNtsI%;IQPn8m@bWyf9Y67xZg>2u;6r!hk z+5V5Wk>^*G9g^xX$qqZ)!z$*D_}aYE}di-^1fh*>?E?J#i1$Q49K)8q=jc+8NLa>X{JaI;l%t&Qm}%;BkAoCXoTy&)Hm+7nH1 zk?RXv6RF0^%O`d~n!J|t%^P|7o0w@ndLgeGfb7?)hrH@q^f*(1;Ih>sw!{s3Jvt?ByacX9MPu>5?PIBoUIqgyX@-= zYq$@FgQMkLGSQHAt0fBJN6zZ4FApyCCi?6v z5BUX&gbb1orX*s{!{lKxaaernC?D|}B6Y7XAMv*@(eBIg@byt7c;?ARp0OvE>?0p{ z4BGu~XZge~`OxxV@)#!!&582z)XPvhhne!V<$WR9EcyELvx(g@rN}qNKY z@-qRCNT?bs&vE-gEY41zv-2FW&hGNuZ$3n;2g@&8;XZGa{BkWgxc%4UmmTC#=Ctqp z;@>3sWk<_{MET_wcQIyHIKRA--y94(cbg%|bo8el+ig1!8eRMBqvD^$d~K9Cpn zJ&4I_nEc&Y3+u|?J%M>Xdn>72FXoDEVfME>8nk^IAyLb%+D@~={bf8;;D zA*Ir8mH(TP0<-F?Aom~=Tu3474+k>Oj&sjV&JX()hGFs0nb{Iq`;`hCF`3xhRSMfv z2Z$yPQrOwULDjKQ*teO8sM%CuKQ@%8MXbUh&2$@cIyZ$Qp@Q@06;8S6`I|IF-O2bt z-Ej)%l=E1S9II%u9ZFVyro#OqJldXEh5J{Cc8|A2LEl5s{)U36??FYU`@JwFJFV#R z!G~D86^a3u5N6{7BnmpSV(=G)_d_E%vlA7erfV;WZqHK;xAeS=Sux^P6qIcn=RXR? zxVP>k7#b+1b%!>;ovE0<5|Wx4$N6N5!lZI1n$m@HX&DoL@%t4mIX7(MOkdBrwKnHJ zc?y$MLCH8?@O2>P&;Fc$_y?HWO}b~wAWn58r|u(X<#L?P?>SpO=Ja#r3|_@KY71xN zV9s&nO#EWX5za;4oQpqkCLQ2RzreX|0Owv8&f{jz(=nVcyf_QaNE8I#F`@A^e(zRG zVOljDYeRa)oYihbPfT?ba~=l}MR_Wc@_s>-^Eo%XKk2C2t=LSE{ZHW?1?0}9J9KXeRx`;C`kF($}XHk954_qSbPnL8q2v0a0 zAL4Z55)wRe6-lr6Bj<}yq*|1_o2O#+s6IqZrYq7~d?0#tOp!LG5b?i9s$%2Ac|-?V zDmG2WV$sq(#iqS@@yR8{rgxZXr6q9|my^i;E>LVLal;PD1kRd0Iok+|^rYoP)qX3| z|6oe@^NeDP^x+7_PUpi!e=8|=`i>x0;H}uT$N^Ka){5PAOodo%?uCm&1QCT|_hFdV zi31Xu*n`u?nbU4DXXPWD^~{{j4V8#QF4q#b|_PENfU=PCM$*M(yuv0brKaM@KM$Et><-TDRTXzEAL!m)arf6*%yN4v?l1U4EZg(XUv3K9^fa#nuD*=iQ&RK~fvDd*mF&a8e)#TfzaPh$SxM>i zXEXBl*PQKdE93UiL(VtOz z4lBTWW~Em?BsfFIY1$FNFNz|SUf?gK)ow7@nFGTJml|9^75<93<_Q`X=L?mC?cZG^r!z0R|@-K+( z&?tjEky$PJqzpcI2s%_G(Zs4ZP!7K8j*3f_!*!^r&{H`gw<)6GNM(c`5}8v&qM&)C z9NAii{9v0ha$GhtrUuHfo1(CS*-9DHWC{tCp^TBtI72yg?|EXU{gg9z#9?Ezv2u2X z713{{GA;~Zcfx1oBK-kkjdGNW@8!e(m)}t?+0`4_?;YjRHOtY{DCN?V@x-$7mC1## zh<+HAk^|`#u3Ry@Kanw3x!P|aCMvZ!U(J%pHpFp$tfE}A;RvxUT4kD-Ke3Vr%C&nT z`ZJ<(V=vS@C0Z%@gNq zeSKEBZ|O~9-y48=V2tuW)I=;og)0xQLXHq6gXs!@=o-3B&`RPl9~3dt-K$ZjxF0X z<%8a6@Y|D0(}P(suO>yxrwbse$t6n3E_;tuzOhV9lD0`?iQ&q3HA0ETU01#vVox-x zK>0ohv)xTElpj|koKALA{ z@AXs(^`JXWh{~D@)iIN4r!s7U$QN{1m21!pv)))$%}sNVPM=dbOoUQ?J|U4gZRhmq zrE;oOhuD~{s=CEd#O$qA^&B996}2P^${w6{1*&?ED~LT%fm^@?Rl_4t&T8qZ#)+_s z5vEG2Hg4xIn^mjYc6NiPzNmZW!+ova!UNjYOf!HPu`> z#`K53YHlwDF{7HZW+`Wzt*W`vNIGYEs^)G_A=X$>&E0bVD4Ns? zRm-bK6D@A8N||U$zui=l+4cUcN|k=_SGD?LR}vb%S4rm6r;TcB;6W@l9aC+c8-x!S zRNMT|B1vtm+WjwvqNIvy&n{R~v&yQyv#g0+AF1{gs4?rUs5)fv{e9-DjxM&$|My-| z9o>;htoV}Z*i7``*ge&WcjvJ{a9nlz+yQK#`KwO9izD{Ar|QgOh)_OSC24)1H>%uh zdn~D#IV)e~tpA$RrG@I|^=Rluyh_skfL^LQXHQ_C!CLhoI}RNjqk6j56hMNPovJW) zE2daQs@I-th@Rh7z3x~S{vcIV#CBp`P@(#y!~UO@r|N4X^epU@>g!>=&wN#1&)&lG zma0E5eX(PjqE=PeOw{J9TK%LO(Y-*mCesE{aiv=O1Xk0LYk$IR-n+Nvp(ecETW zwW+B!!sJV}&5=Iv;fK|BsVyY76_cH0}P zojtH|5z|KP@)8bceuBEu#m(r*K((vh2grlqL#W}(Ne7cbx{YFAW!&r zs(Qe7NJitP9@O|8luoW5v|>N(K0!Sw6GNf8s1Du+C4Iou!S_2NMZ3#cGmEoLqfsh02*@(2hiA1zh2z!XGr}+gYIXR}D5CGS>M<@6M1!uX$Arfr7zA1_vgX-l)@Rpl4h2)M>k5-wlqdH+hDVP+=%%#Xp?(>FS+L z3W%xX>fOO^Bs7_*-ai}-Xquruu^}I8NR!p4;vm5qYdLfKsItG<$jj%GhlU)_Q*Z`$%ieLbL%DDkL7L4QJhryZ1~U;^idCK6e~XwIZ)&a2xc z3ZlPS((b+k)DOCR!75s9b>YxbEVKPl7rt(aJfM&Il||Hj*Qj6jgoFm`)vpUL5Xmd3 zi~ivJ5BtYk{dxBsoPw#v+2$_itdSB0)i-r%`2zHChr09!B%|u8{wh_Nr~cs&rSn** z{!;{3?3byL|4cz{IGpo!hDPCHjg83_8r3oIvYkfL{2Vf?K+ZU(94dwg6S!o@o zLkEo`(sQ;FAF}XbiN^67^7+FHG>!#`Vsoo%oa$k$m#1*9ddRu966g9f&Py#MGSyek zreifG%MaPeKwdC@IcM|)&c)+7A4PNixXSsbt3-jkIjeedItOd&ZwbJP$q|k7NDO7{ zR87N$;L+}y#wQte!Eb1qpMcI(lWW?wDa6{)6qBai%TRc@1dZ>QVQ{TAH62C<<7mYt zO(*ZoNR!hwono6a5#M|~n>WZ3) z)xkIe7=WfO%Q_D!G)SF7OUu2S+l(% z%&di*W>+6M9ME^ofkDujLxJBjSClSYbyrhb8%Lr*ji%^1z$=y+m26*Nbd z%dvMeMRRlmcxRC2*htJ?H}=$=9=aThNlBWl$&k!*UybBg`mNPm=?80>_*f(Pfqri_ zkLDC$4e71sxicmj)k8F|1b0kKm`3sgf$o}*BhnG9?rAJ$Y+`|tnx72>BnF2#|IE{} ziLQuFL$#_#5NU@+TK(xh#9HmwT8ES(s#Vrn|3U+vZqnM!n}qDShqmIu+c>(_T3hie zdK$e?Tlr!Vw(GiTt3AYVo|W#}8awiF9$>k)WZ=A`Y^x;9aWLficvBw6hrZO=8P z`$YZ5X!}?k#-keAz(p9#!WG&6-p?Ig<>2cFeV2`oW$ z>&#ixk+bzJ?UaG=goZ7g-*dE62G_)yk7(_baD-oDW9^g(bZqoy&RILPv8FeXME-eN zQ@=ul%{JPZqb5LP>o|9mXya|6O!Eh5=UP78pR{vNz`QE?a=!Q1E=w)I`awHw;_5)8 z<6AkesU))ErJO%|YLo0*6J3qdCUu^SZMjlyQZ#hq(q648Ii(v>oUc~mZb2e@o+VKz zXRl2@EhoV_O`H7qIOc+DwX5zt$632C+BGg_Y^R;juE~Je8k4kX5m35jvD)=*@V;kj z?fSvcnX02X>$_+r>*(*L-9FC-J1UhV3gQ8iHnU0su@FI%5znvWYqKuoq9>iS*%_M=|BJNQZwuftD{@xc!)f0~oBggU()c=B z$x8a4)#lDZL(e&A^Yl>0hVI%s-C)*BO$)UzjPaP!#AshuL4x5vOIxr7A8g{PeZ4US zR`FR|+$Ij;bhoxR0BlxYTiWa@Hl+t>OY>Lam~Dpk>y$X`e)ZCR_xX#p-GY!Yz?5p6uHI-wx73fi`V-b7t{>Jp z??l7y57IRp2!Els*EI~15!0Q}xqgCD#$1&s$R_BTO>Ph6y{q%sJ{Y@fv79?Ybe=n{ z;dgH7T2wNjq6;3nmf@c$&R*iG-GM)Esh`jl2o$vZ0qT{V}zNhSn-R+|D z6GDhimg@ZKKg4v}UFX*ciAud+I=?}iFyjf(`3-i#T5=BO)-@8@v%?YvqfX}+=>eBs zQ|D*0T%7Wj3fRZ)oTck^9ou-KM>BMt&9{-357u>8s)_v_pz9rlp5_UK`?|1IpNZ{#qzj*n903#c{_`S+=$TG(AOo#+ zTZ*EPW)Ifw%yP%6_RX9PkLq?7Y{fi4(CzXyz|Mc@_HKi@j{c(C-^v$$!&bN75~Q9E z;C$0bB3o)={33BPXLc8ff?}iY=$KM$7`E3P-3+DD=IV|<*@QD6w{>R{Qi!JA)Sdes zO*Gwsv#6@>{MgyVHXPCAbe~9U(JtM^Dh@>3Kk4#E`QU)_H{G2-kaT{8uBbUAam`Nm zPX~M0|14*IvD2vgV_6<+I$9LwBM0>8ASx}pU({PvEr2rJv=+qyN-Uw&6UAg4rTBV5 z)X&A(KIkeMa}h-~mqaTs#DWR7qD=-oWV}YK{5lW+7mzJhUxZ0+xeuJR{l)6*ux(%2 zN1{m(Hi|X!&lApGh&9{dJg?&iv35u@KAa^wc7z0SR*H_-H)93!w^;w}VH`reD7qaf z#8~eUo7OCVB)mAc@8EoMM{Jgj2KVhHddTCUBY#B?FVypCfkft=A+}@(aX?|7*w#*t z{J)Bi*me?L5bB9O=b-iLH;R7Ep~Y8vid}6n){%~!io#xSR{b)Gx#-b)vC#`$wF41-aw7FfrbYSWwMPT&NGg3g}aD=^A(V{$~=|^$wVrFgdXo#5E62VAVCT5N=#DV0|5?P%`5(UxLBDjimC2M0Ra~xc`xkScO}h z4&6Buwo4RTw~Ggm=d+ua#iKfiv|3y7SQI)iVX1h$-xs9WQR2xnaYW7C#8bClVs4ot zW<@HHGj0&GGT_4Vr;8Uft+2v!QM|BCLA1n_C62;=B0oa5#b0)Zm#aAc5{#RLxrSed0jo6D{r62ATfAqYD z#Nw0que&?Zfa!X{HWP`%Hod$D8rZdmUQ>t$Mtss+Ot%IZsR(C6>Z!3MB zi`J-csJ>1~HdZi2y}e-${-NNi-rjQZA#AqZ!4IPT?WuS8i&Zh5R__##yy5o*ecjVY zEPi|I>m9bo%13|Byw&;!-_X#{3HnAw@Qia`=o{xoArIJQA>x1aU%a5MyT0)y%+cnh z={>51!dHLOd!|mn2YmD$E#{Q_NZ)%P8Wi7K-`@^LsB6F0hkUzDRArrh#L0YE$w~c~ zVfG{_+Up~mVeE(e(2p~q=Nlt9ALMa2F?4#rokF{Y}%g!C1kV zp}+Yr%qR4qKL3k9GMh8{yT5EO_e<74oCNLFKG#3qiPh`7i}g?TV%;xyi~c!|=~4W3 z{o4^KNLpLzKMzMwTO{jCMjU`6YNRhY3m1MSPG52ZL1$C8{%d>(qE6%W-;Pv3kkWJR zDb|~QzJ~+a@2CG2J`o#?-umC^(B^rMI6su=|As=@_LkHCUF3v4o5lvVHwvp)dV`|p z4x(ON463fvFoaVL>Wg~(f6r=z)sO;WZ7Uio)!&a}I;#wIf>W?2^qq5i1m~M%L*4sG znFOshxPR>fCD9t1TmI=xOgA*I{~o+%@R)|4&Rb>hlyxNPeZt_Wz!J^C zABNT)+Yz%FVraehAkOz3Ftl$Az^%pSD(S~8)@S*3^4WV(?u=6g4$UTY3c)l1SPr{*1I%J3}5}^|l z4P!mFAe=8XOkNECVmfuzFa;+VX^{)(zPpB)L+7wi*wrw7O*FC73d4*)$lH%TFvOL^ z2U@o_%um7)j2h0FztgZdWFJu@55wX)_wb)mZVwG7H$&U!_U3%Q z-EgWD=6JK4A*&H25R)oVkhL?MZPgx2IDHKlN}zo8DsuYn=3IC}qF_id#ZLL>^Z3Wkyo>BK(S8ooEk#}bZKqM%Y6zE8qdP24TRkAmG;p08*46&3_# zy=C|{$#e_Z>@36IWksjFW#_qXEw(3Yz)GX){96z$3=#J<*WURg81+uY1hg(HKVs z2)k#EbBEr-Oex7^T%f#*9PhSq=`Ps$!H>oS2K#pOFs^)zsaWGf#`R`6D6b2~4LGL9 zMm{!f$b_T%l49JPiFn?2jd4p`xNh$n#w}L|5_=J4-14jsR?mJIx9#bBG?=wF8fuWeu$M~Yq3i}NM{f)1qAX@ud#(xgw5kIUZM`QLkv<_nEjW?Au!|BB0gey%Z_ ziC=bY!akI}vg*HA9L@7x*?K%};>P9xC*4>+q_^6g)nNQ(R>8c%o!K3J)|3q?E27z! zqH5+b&DjyW?Bc18uswl=qJ$p)Cqdok~_uP(Jbb21NZ!3L+EW-9ah|Mw{2 zzek(V2t!L&0Q}pMbu0U6OY@lmW@jGTiuJ&Qi>=skV6itFQuchfd1(l9FxP6$Cg8!E z*6bMC71D+cwy46zwk-O8?aMGy0~P%K8*lsM zA&0HZy)dxOIIkW?Q9G|?{2J8S@BFu zv4eSiH@2>CP-F*{BDb4D9K_9%#76dyubrU?^*7zR;67P8UEidEnXsV5L*b? z2eBYvVUYCpgCI5rcRhmHVW38n1WU%NQ%5pC%d5GgSbCZ4U8sk7!%}8tuFwiz_K<6Tdb>!d0aGWZ$34aH7F|%G@ogMO2u((LRm>Ki{u>4 zQ(Rd&^VxB%J!&(IXM2GQ<0VJgeS%cDdVaH2Q&l4V=tISo(E&iu7$% zUCrzs!(31_Du#uYRa)6nX=U^G7*?^Y#LH4*WxlbTDa{^JrQgO)mB!mA)*@;1vskvQ zOu~WWn>_1Z>*PH@E1P#uV*~KC{B)KG?3m8t0FN20eObL-xO#1$A&FUOlJqykB#Eiw zOm?g6wYg@|1pTcvi|xSgug;RH88Dl5#NE!>%nWpy!%~5Fb0p6a8pqzCy8-cRkPM~8 z3)m2Il?Ci7%5d#s5kX!2-!-s)5i7!6!xGHA$d@KklzD74Ce~*bOMd0=V(D9pm$09B zdD&8nGc@;F#ufkt%OpWGPGBQ(w<&@32L2{U&k_?QM{qgOVy%a3Cb3qQZw^mpOMqX= zYzwesIa>jANnx|f`WbFErD8;Wq)1*TCRH-gcd3#QbTzY(ve(?r#i?-qFU+hNeqU<^ zizs{0$@0L#d}@W{AFHlp1Mz(3O1Nw?|5+(T_`RznarIa&ncMf(><^y(T_Xj7#AB>M m^5_nYlC%CXCXXGjO1{?Fu;0I>{Y&#W{D1%97ip}|i~j?Ex7t?# diff --git a/i18n/giswater_es_ES.ts b/i18n/giswater_es_ES.ts index 75d3db421..74182ce08 100644 --- a/i18n/giswater_es_ES.ts +++ b/i18n/giswater_es_ES.ts @@ -288,6 +288,7 @@ + giswater The selected INP file does not match with a 'UD' project. Please check it before continuing... The selected INP file does not match with a 'UD' project. Please check it before continuing... From 8ae00e1493775c5290ec09c9adf1add365ec1b8b Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Tue, 28 Feb 2023 14:06:10 +0100 Subject: [PATCH 18/28] Enhancement: manage 'element' template in info --- core/shared/element.py | 4 ++++ core/shared/info.py | 7 +++++++ dbmodel | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/core/shared/element.py b/core/shared/element.py index 34d78da89..567c73ae3 100644 --- a/core/shared/element.py +++ b/core/shared/element.py @@ -28,6 +28,7 @@ def __init__(self): self.canvas = global_vars.canvas self.snapper_manager = GwSnapManager(self.iface) self.vertex_marker = self.snapper_manager.vertex_marker + self.dlg_add_element = None def get_element(self, new_element_id=True, feature=None, feature_type=None, selected_object_id=None, list_tabs=None): @@ -250,6 +251,9 @@ def get_element(self, new_element_id=True, feature=None, feature_type=None, sele return self.dlg_add_element + def get_element_dialog(self): + return self.dlg_add_element + def _update_location_cmb(self): element_type = tools_qt.get_text(self.dlg_add_element, self.dlg_add_element.element_type) diff --git a/core/shared/info.py b/core/shared/info.py index d3771b258..aa54633ce 100644 --- a/core/shared/info.py +++ b/core/shared/info.py @@ -246,6 +246,13 @@ def open_form(self, point=None, table_name=None, feature_id=None, feature_cat=No dlg_add_visit = manage_visit.get_visit_dialog() dlg_add_visit.rejected.connect(lambda: tools_gw.reset_rubberband(self.rubber_band)) + elif template == 'element': + element_id = self.complet_result['body']['feature']['id'] + manage_element = GwElement() + manage_element.get_element(new_element_id=False, selected_object_id=element_id) + dlg_add_element = manage_element.get_element_dialog() + dlg_add_element.rejected.connect(lambda: tools_gw.reset_rubberband(self.rubber_band)) + else: tools_log.log_warning(f"template not managed: {template}") return False, None diff --git a/dbmodel b/dbmodel index f392a5751..57a691e82 160000 --- a/dbmodel +++ b/dbmodel @@ -1 +1 @@ -Subproject commit f392a5751496be209d3a0775924f22c596fdc2b8 +Subproject commit 57a691e82e96fe881875d8e1941123ddade839c1 From 048c5017d8b6a30c2f1e72a4e75b529f031e857b Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Wed, 1 Mar 2023 14:44:15 +0100 Subject: [PATCH 19/28] Improve highlight in draw_by_json function --- core/utils/tools_gw.py | 40 ++++++++++++++++--- lib/tools_qgis.py | 91 +++++++++++++++++++++++------------------- 2 files changed, 85 insertions(+), 46 deletions(-) diff --git a/core/utils/tools_gw.py b/core/utils/tools_gw.py index ca4280178..41cb74527 100644 --- a/core/utils/tools_gw.py +++ b/core/utils/tools_gw.py @@ -453,18 +453,46 @@ def draw_by_json(complet_result, rubber_band, margin=None, reset_rb=True, color= list_coord = re.search(r'\((.*)\)', str(complet_result['body']['feature']['geometry']['st_astext'])) max_x, max_y, min_x, min_y = tools_qgis.get_max_rectangle_from_coords(list_coord) + # Parse the WKT string to extract the geometry type and coordinates + wkt_string = complet_result['body']['feature']['geometry']['st_astext'] + if reset_rb: reset_rubberband(rubber_band) - if str(max_x) == str(min_x) and str(max_y) == str(min_y): - point = QgsPointXY(float(max_x), float(max_y)) - tools_qgis.draw_point(point, rubber_band, color, width) - else: - points = tools_qgis.get_geometry_vertex(list_coord) - tools_qgis.draw_polyline(points, rubber_band, color, width) + draw_wkt_geometry(wkt_string, rubber_band, color, width) + if margin is not None: tools_qgis.zoom_to_rectangle(max_x, max_y, min_x, min_y, margin, change_crs=False) +def draw_wkt_geometry(wkt_string, rubber_band, color, width): + match = re.match(r'^(\w+)\((.*)\)$', wkt_string) + if not match: + tools_qgis.show_warning('Invalid WKT string', parameter=f'Error in draw_by_json(), wkt={wkt_string}') + geometry_type = match.group(1) + coordinates = match.group(2) + + # Draw the geometry based on its type + if geometry_type == 'POINT': + x, y = [float(c) for c in coordinates.split()] + point = QgsPointXY(x, y) + tools_qgis.draw_point(point, rubber_band, color, width, reset_rb=False) + elif geometry_type == 'LINESTRING': + points = [QgsPointXY(float(x), float(y)) for x, y in (c.split() for c in coordinates.split(','))] + tools_qgis.draw_polyline(points, rubber_band, color, width, reset_rb=False) + elif geometry_type == 'POLYGON': + rings = [QgsPointXY(float(x), float(y)) for x, y in (c.split() for c in coordinates.split(','))] + tools_qgis.draw_polygon(rings, rubber_band, color, width, reset_rb=False) + elif geometry_type == 'GEOMETRYCOLLECTION': + # Extract the individual geometries from the collection + # NOTE: will only work if all geometries have the same geometry type + geometries = re.findall(r'(\w+)\((.*?)\)', coordinates) + for geometry_type, geometry_coords in geometries: + geometry_wkt = f'{geometry_type.upper()}({geometry_coords})' + draw_wkt_geometry(geometry_wkt, rubber_band, color, width) + else: + tools_qgis.show_warning('Unsuported geometry type', parameter=geometry_type) + + def enable_feature_type(dialog, widget_name='tbl_relation', ids=None): feature_type = tools_qt.get_widget(dialog, 'feature_type') diff --git a/lib/tools_qgis.py b/lib/tools_qgis.py index c685d1951..0e6d6a497 100644 --- a/lib/tools_qgis.py +++ b/lib/tools_qgis.py @@ -6,6 +6,7 @@ """ # -*- coding: utf-8 -*- import configparser +import re from functools import partial import console @@ -581,21 +582,16 @@ def get_max_rectangle_from_coords(list_coord): coords = list_coord.group(1) polygon = coords.split(',') - x, y = polygon[0].split(' ') - min_x = x # start with something much higher than expected min - min_y = y - max_x = x # start with something much lower than expected max - max_y = y - for i in range(0, len(polygon)): - x, y = polygon[i].split(' ') - if x < min_x: - min_x = x - if x > max_x: - max_x = x - if y < min_y: - min_y = y - if y > max_y: - max_y = y + x_vals = [] + y_vals = [] + for p in polygon: + x, y = re.findall(r'\d+\.\d+', p) + x_vals.append(float(x)) + y_vals.append(float(y)) + min_x = min(x_vals) + max_x = max(x_vals) + min_y = min(y_vals) + max_y = max(y_vals) return max_x, max_y, min_x, min_y @@ -893,7 +889,7 @@ def create_qml(layer, style): load_qml(layer, path_temp_file) -def draw_point(point, rubber_band=None, color=QColor(255, 0, 0, 100), width=3, duration_time=None): +def draw_point(point, rubber_band=None, color=QColor(255, 0, 0, 100), width=3, duration_time=None, reset_rb=True): """ Draw a point on the canvas :param point: (QgsPointXY) @@ -903,18 +899,23 @@ def draw_point(point, rubber_band=None, color=QColor(255, 0, 0, 100), width=3, d :param duration_time: Time in milliseconds that the point will be visible. Ex: 3000 for 3 seconds (int) """ - rubber_band.reset(0) + if reset_rb: + rubber_band.reset(0) rubber_band.setIconSize(10) rubber_band.setColor(color) rubber_band.setWidth(width) - rubber_band.addPoint(point) + point = QgsGeometry.fromPointXY(point) + if rubber_band.size() == 0: + rubber_band.setToGeometry(point, None) + else: + rubber_band.addGeometry(point, None) # wait to simulate a flashing effect if duration_time is not None: QTimer.singleShot(duration_time, rubber_band.reset) -def draw_polyline(points, rubber_band, color=QColor(255, 0, 0, 100), width=5, duration_time=None): +def draw_polyline(points, rubber_band, color=QColor(255, 0, 0, 100), width=5, duration_time=None, reset_rb=True): """ Draw 'line' over canvas following list of points :param points: list of QgsPointXY (points[QgsPointXY_1, QgsPointXY_2, ..., QgsPointXY_x]) @@ -924,9 +925,14 @@ def draw_polyline(points, rubber_band, color=QColor(255, 0, 0, 100), width=5, du :param duration_time: Time in milliseconds that the point will be visible. Ex: 3000 for 3 seconds (int) """ + if reset_rb: + rubber_band.reset(1) rubber_band.setIconSize(20) polyline = QgsGeometry.fromPolylineXY(points) - rubber_band.setToGeometry(polyline, None) + if rubber_band.size() == 0: + rubber_band.setToGeometry(polyline, None) + else: + rubber_band.addGeometry(polyline, None) rubber_band.setColor(color) rubber_band.setWidth(width) rubber_band.show() @@ -936,6 +942,31 @@ def draw_polyline(points, rubber_band, color=QColor(255, 0, 0, 100), width=5, du QTimer.singleShot(duration_time, rubber_band.reset) +def draw_polygon(points, rubber_band, border=QColor(255, 0, 0, 100), width=3, duration_time=None, reset_rb=True): + """ + Draw 'polygon' over canvas following list of points + :param duration_time: integer milliseconds ex: 3000 for 3 seconds + """ + + if reset_rb: + rubber_band.reset(2) + rubber_band.setIconSize(20) + polygon = QgsGeometry.fromPolygonXY([points]) + if rubber_band.size() == 0: + rubber_band.setToGeometry(polygon, None) + else: + rubber_band.addGeometry(polygon, None) + rubber_band.setColor(border) + rubber_band.setFillColor(QColor(0, 0, 0, 0)) + rubber_band.setWidth(width) + rubber_band.show() + + # wait to simulate a flashing effect + if duration_time is not None: + # Qtimer singleShot works with ms, we manage transformation to seconds + QTimer.singleShot(int(duration_time)*1000, rubber_band.reset) + + def get_geometry_from_json(feature): """ Get coordinates from GeoJson and return QGsGeometry @@ -1171,24 +1202,4 @@ def _get_multi_coordinates(feature): coordinates = coordinates[:-2] + ")" return coordinates - -def draw_polygon(points, rubber_band, border=QColor(255, 0, 0, 100), width=3, duration_time=None): - """ - Draw 'polygon' over canvas following list of points - :param duration_time: integer milliseconds ex: 3000 for 3 seconds - """ - - rubber_band.setIconSize(20) - polygon = QgsGeometry.fromPolygonXY([points]) - rubber_band.setToGeometry(polygon, None) - rubber_band.setColor(border) - rubber_band.setFillColor(QColor(0, 0, 0, 0)) - rubber_band.setWidth(width) - rubber_band.show() - - # wait to simulate a flashing effect - if duration_time is not None: - # Qtimer singleShot works with ms, we manage transformation to seconds - QTimer.singleShot(int(duration_time)*1000, rubber_band.reset) - # endregion From 52c2f1cfb58a41d9c9bcf5a1cfb20d9f6db1b8b9 Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Wed, 1 Mar 2023 16:18:56 +0100 Subject: [PATCH 20/28] Update changelog --- metadata.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata.txt b/metadata.txt index c29ca67dd..258834fb4 100644 --- a/metadata.txt +++ b/metadata.txt @@ -8,6 +8,7 @@ version=3.5.033 author=David Erill, Luigi Pirelli, Natasa Cica, Nestor Ibañez, Adrian Valenciano, Barbara Rzepka, Sergi Muñoz, Josep Lluís Sala, Edgar Fusté, Albert Bofill, Sergi Maspons, Elies Bertran, Abel García Juanes, Xavier Torret Changelog=Version 3.5.033 + - Make Element layer identifiable with Giswater info tags= giswater, water networks, sewerage, urban drainage, EPANET, SWMM From 6367035279bc624d0a940078a6633c2f7f0d60ec Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Wed, 1 Mar 2023 16:54:36 +0100 Subject: [PATCH 21/28] Bug fix: fix accidental map pan when setting arc_id in psector --- core/shared/psector.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/shared/psector.py b/core/shared/psector.py index 7d7d3def9..f10a25922 100644 --- a/core/shared/psector.py +++ b/core/shared/psector.py @@ -2098,8 +2098,9 @@ def _set_to_arc(self, idx): # Set signals tools_gw.connect_signal(self.canvas.xyCoordinates, self._mouse_move_arc, 'psector', 'set_to_arc_xyCoordinates_mouse_move_arc') - tools_gw.connect_signal(self.emit_point.canvasClicked, partial(self._set_arc_id, idx), - 'psector', 'set_to_arc_ep_canvasClicked_set_arc_id') + # To activate action pan and not move the canvas accidentally we have to override the canvasReleaseEvent. + # The "e" is the QgsMapMouseEvent given by the function + self.emit_point.canvasReleaseEvent = lambda e: self._set_arc_id(idx, e.mapPoint(), 1) def _set_arc_id(self, idx, point, event): From d65cb8153f0ea7ae4dde581ffc8242f06274349a Mon Sep 17 00:00:00 2001 From: Sergi Maspons Date: Thu, 2 Mar 2023 09:41:28 +0100 Subject: [PATCH 22/28] Bug fix: don't brake if there are dots in layer tablename --- lib/tools_qgis.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/tools_qgis.py b/lib/tools_qgis.py index 0e6d6a497..47faf8b60 100644 --- a/lib/tools_qgis.py +++ b/lib/tools_qgis.py @@ -331,7 +331,9 @@ def get_layer_source(layer): if 'dbname' in splt_dct: splt_dct['db'] = splt_dct['dbname'] if 'table' in splt_dct: - splt_dct['schema'], splt_dct['table'] = splt_dct['table'].split('.') + table_parts = splt_dct['table'].split('.') + splt_dct['schema'] = table_parts[0] + splt_dct['table'] = '.'.join(table_parts[1:]) for key in layer_source.keys(): layer_source[key] = splt_dct.get(key) From fb578ea2f1e1221457a5956e25a4a930ffd26a3f Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Fri, 3 Mar 2023 14:30:23 +0100 Subject: [PATCH 23/28] Enhancement: draw inverted plot and mirror plot on Curves when type is Shape --- core/shared/nonvisual.py | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/core/shared/nonvisual.py b/core/shared/nonvisual.py index ad1b1546c..6eb28a089 100644 --- a/core/shared/nonvisual.py +++ b/core/shared/nonvisual.py @@ -294,6 +294,7 @@ def get_curves(self, curve_id=None, duplicate=False): # Connect dialog signals cmb_curve_type.currentIndexChanged.connect(partial(self._manage_curve_type, self.dialog, curve_type_headers, tbl_curve_value)) + cmb_curve_type.currentIndexChanged.connect(partial(self._manage_curve_plot, self.dialog, tbl_curve_value, plot_widget)) tbl_curve_value.cellChanged.connect(partial(self._onCellChanged, tbl_curve_value)) tbl_curve_value.cellChanged.connect(partial(self._manage_curve_value, self.dialog, tbl_curve_value)) tbl_curve_value.cellChanged.connect(partial(self._manage_curve_plot, self.dialog, tbl_curve_value, plot_widget)) @@ -302,7 +303,7 @@ def get_curves(self, curve_id=None, duplicate=False): # Set initial curve_value table headers self._manage_curve_type(self.dialog, curve_type_headers, tbl_curve_value, 0) - self._manage_curve_plot(self.dialog, tbl_curve_value, plot_widget, None, None) + self._manage_curve_plot(self.dialog, tbl_curve_value, plot_widget) # Set scale-to-fit tools_qt.set_tableview_config(tbl_curve_value, sectionResizeMode=1, edit_triggers=QTableView.DoubleClicked) @@ -473,12 +474,15 @@ def _manage_curve_value(self, dialog, table, row, column): self.valid = (valid, "Invalid curve. Values must go in pairs.") - def _manage_curve_plot(self, dialog, table, plot_widget, row, column): + def _manage_curve_plot(self, dialog, table, plot_widget): """ Note: row & column parameters are passed by the signal """ # Clear plot plot_widget.axes.cla() + # Check combo type + curve_type = tools_qt.get_combo_value(dialog, dialog.cmb_curve_type) + # Read row values values = self._read_tbl_values(table) temp_list = [] # String list with all table values @@ -514,7 +518,6 @@ def _manage_curve_plot(self, dialog, table, plot_widget, row, column): y_list = [x[1] for x in float_list] # y_list = [y1, y2, y3] # Create curve if only one value with curve_type 'PUMP' - curve_type = tools_qt.get_combo_value(dialog, dialog.cmb_curve_type) if scipy_imported and len(x_list) == 1 and curve_type == 'PUMP': # Draw curve with points (0, 1.33y), (x, y), (2x, 0) x = x_list[0] @@ -532,8 +535,22 @@ def _manage_curve_plot(self, dialog, table, plot_widget, row, column): x_list = xnew y_list = y_smooth - # Create and draw plot - plot_widget.axes.plot(x_list, y_list, color='indianred') + # Manage inverted plot and mirror plot for SHAPE type + if curve_type == 'SHAPE': + + # Get inverted points from y_lits + y_list_inverted = [-y for y in y_list] + + # Get figure + fig = plot_widget.figure + # Create inverted plot + plot_widget.axes.plot(y_list, x_list, color="blue") + # Create mirror plot + plot_widget.axes.plot(y_list_inverted, x_list, color="grey") + else: + plot_widget.axes.plot(x_list, y_list, color='indianred') + + # Draw plot plot_widget.draw() From 75884898e3b0a41dde603f286c44e029f866ec25 Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Tue, 7 Mar 2023 10:54:23 +0100 Subject: [PATCH 24/28] Enhancement: manage set_arc action for connec and gully relations on psector form --- core/shared/psector.py | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/core/shared/psector.py b/core/shared/psector.py index f10a25922..67b82e7ba 100644 --- a/core/shared/psector.py +++ b/core/shared/psector.py @@ -2178,30 +2178,36 @@ def _set_arc_id(self, idx, point, event): the_geom = f"ST_GeomFromText('POINT({point.x()} {point.y()})', {global_vars.data_epsg})" + if tab_idx == 2: + self._update_tbl_relations(selected_rows, idx, the_geom, self.qtbl_connec, "id", self.tablename_psector_x_connec, self.arc_id, self.qtbl_connec) + elif tab_idx == 3: + self._update_tbl_relations(selected_rows, idx, the_geom, self.qtbl_gully, "id", self.tablename_psector_x_gully, self.arc_id, self.qtbl_gully) + + # Force a map refresh + tools_qgis.force_refresh_map_canvas() + + # Manage signals + tools_qgis.disconnect_snapping(True, self.emit_point, self.vertex_marker) + tools_gw.set_model_signals(self) + + + def _update_tbl_relations(self, selected_rows, idx, the_geom, table_name, id_column, tablename_psector_x_connec, arc_id, qtbl): for row in selected_rows: sql = "" if idx == 1: sql += (f"INSERT INTO temp_table (fid, geom_point) VALUES (485, {the_geom});\n") - row_id = self.qtbl_connec.model().record(row.row()).value("id") + row_id = qtbl.model().record(row.row()).value(id_column) - sql += (f"UPDATE {self.tablename_psector_x_connec} SET arc_id = " - f"'{self.arc_id}' WHERE id = '{row_id}'") + sql += (f"UPDATE {tablename_psector_x_connec} SET arc_id = " + f"'{arc_id}' WHERE id = '{row_id}'") tools_db.execute_sql(sql) filter_ = "psector_id = '" + str(self.psector_id.text()) + "'" - self.fill_table(self.dlg_plan_psector, self.qtbl_connec, self.tablename_psector_x_connec, + self.fill_table(self.dlg_plan_psector, table_name, tablename_psector_x_connec, set_edit_triggers=QTableView.DoubleClicked, expr=filter_) - # Force a map refresh - tools_qgis.force_refresh_map_canvas() - - # Manage signals - tools_qgis.disconnect_snapping(True, self.emit_point, self.vertex_marker) - tools_gw.set_model_signals(self) - - def _replace_arc(self): if hasattr(self, 'emit_point') and self.emit_point is not None: From c810006d7e09a716cb4baf4f367021bf91c596fe Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Tue, 7 Mar 2023 12:39:05 +0100 Subject: [PATCH 25/28] Minor bug fix: Set schema_name on execute_procedure --- core/admin/admin_btn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/admin/admin_btn.py b/core/admin/admin_btn.py index 0d229c20e..89c94a9c2 100644 --- a/core/admin/admin_btn.py +++ b/core/admin/admin_btn.py @@ -288,7 +288,7 @@ def execute_reset_sequences(self, schema_name=None): self.schema_name = schema_name - result = tools_gw.execute_procedure('gw_fct_admin_reset_sequences', self.schema_name, commit=False) + result = tools_gw.execute_procedure('gw_fct_admin_reset_sequences', schema_name=self.schema_name, commit=False) if result is None or ('status' in result and result['status'] == 'Failed'): self.error_count = self.error_count + 1 From db363d9d3fed6d8bea20b40bf62e7def3c98c5cc Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Tue, 7 Mar 2023 13:08:53 +0100 Subject: [PATCH 26/28] Minor enahncement: manage status result from last_proces on update schema --- core/admin/admin_btn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/admin/admin_btn.py b/core/admin/admin_btn.py index 89c94a9c2..b40283fe2 100644 --- a/core/admin/admin_btn.py +++ b/core/admin/admin_btn.py @@ -385,7 +385,8 @@ def load_updates(self, project_type=None, update_changelog=False, schema_name=No if status: status = self.execute_last_process(schema_name=schema_name, locale=True) if status: - status = self.execute_reset_sequences(schema_name=schema_name) + self.execute_reset_sequences(schema_name=schema_name) + self.task1.setProgress(100) if update_changelog is False: From c3084f3c4be1ec2517792314c37e80cc0d44b1fb Mon Sep 17 00:00:00 2001 From: Albert Bofill Date: Wed, 8 Mar 2023 14:05:37 +0100 Subject: [PATCH 27/28] Update qgis templates adding psector tables with pk rid and add direction arrow on rpt_arc ws results --- .../templates/qgisproject/en_US/ud_epa.qgs | 69332 ++++++++------- .../qgisproject/en_US/ud_inventory.qgs | 42391 ++++----- .../templates/qgisproject/en_US/ud_master.qgs | 73846 +++++++++------- .../templates/qgisproject/en_US/ud_om.qgs | 44120 ++++----- .../templates/qgisproject/en_US/ws_epa.qgs | 55051 ++++++------ .../qgisproject/en_US/ws_inventory.qgs | 32407 +++---- .../templates/qgisproject/en_US/ws_master.qgs | 59872 +++++++------ .../templates/qgisproject/en_US/ws_om.qgs | 35386 ++++---- 8 files changed, 222840 insertions(+), 189565 deletions(-) diff --git a/resources/templates/qgisproject/en_US/ud_epa.qgs b/resources/templates/qgisproject/en_US/ud_epa.qgs index 09b49724b..46e0e59a1 100644 --- a/resources/templates/qgisproject/en_US/ud_epa.qgs +++ b/resources/templates/qgisproject/en_US/ud_epa.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,447 +21,447 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -527,63 +526,63 @@ v_rpt_subcatchwasoff_sum_30c8fcc2_d459_46b6_82bc_71a31639446d - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -598,7 +597,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -615,398 +614,398 @@ - - - - - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_75f68545_1c89_4491_af1e_6b2e300b00c6 @@ -1048,7 +1021,7 @@ - + 0 @@ -1071,7 +1044,7 @@ - + 0 @@ -1091,7 +1064,7 @@ - + cat_arc_52f24e12_c228_47c2_b347_69b187f2d984 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_arc" @@ -1099,7 +1072,7 @@ Arc catalog - + 0 @@ -1122,7 +1095,7 @@ - + 0 @@ -1152,256 +1125,388 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1482,82 +1587,82 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -1580,7 +1685,7 @@ - + cat_connec_c478157f_493b_462e_addb_2de2fbf4f4da __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_connec" @@ -1588,7 +1693,7 @@ Connec catalog - + 0 @@ -1611,7 +1716,7 @@ - + 0 @@ -1641,130 +1746,262 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1809,46 +2046,46 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + @@ -1871,7 +2108,7 @@ - + cat_grate_c32f087c_3368_4aa6_966e_1ff0e19c5894 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_grate" @@ -1879,7 +2116,7 @@ Grate catalog - + 0 @@ -1902,7 +2139,7 @@ - + 0 @@ -1932,151 +2169,283 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -2127,52 +2496,52 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + @@ -2195,7 +2564,7 @@ - + cat_mat_arc_bba8ab41_f652_4864_95d3_45c7e39b5175 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_arc" @@ -2203,7 +2572,7 @@ Arc material catalog - + 0 @@ -2226,7 +2595,7 @@ - + 0 @@ -2256,53 +2625,185 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - - - - - + + + + + @@ -2325,24 +2826,24 @@ - - - - - + + + + + - - - - - + + + + + - + - + @@ -2365,7 +2866,7 @@ - + cat_mat_grate_3021f691_143d_43b1_b6a3_c4c83c58791b __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_grate" @@ -2373,7 +2874,7 @@ Grate material catalog - + 0 @@ -2396,7 +2897,7 @@ - + 0 @@ -2426,46 +2927,178 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - - - - + + + + @@ -2486,22 +3119,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -2524,7 +3157,7 @@ - + cat_mat_node_78cd77ff_0c52_4719_a447_c588e95b21a3 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_node" @@ -2532,7 +3165,7 @@ Node material catalog - + 0 @@ -2555,7 +3188,7 @@ - + 0 @@ -2585,46 +3218,178 @@ 1 0 - + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + @@ -2645,22 +3410,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -2683,7 +3448,7 @@ - + cat_node_612b7617_0e3d_43f8_bffe_e49e3afa89f5 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_node" @@ -2691,7 +3456,7 @@ Node catalog - + 0 @@ -2714,7 +3479,7 @@ - + 0 @@ -2744,144 +3509,276 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -2930,50 +3827,50 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + @@ -2996,7 +3893,7 @@ - + __XMIN__ __YMIN__ @@ -3016,7 +3913,7 @@ Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3048,7 +3945,7 @@ - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3061,7 +3958,7 @@ - + @@ -3086,52 +3983,173 @@ 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -3142,89 +4160,62 @@ 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -3232,78 +4223,78 @@ - + - + - - + - + - + - + - - - - + + + + @@ -3312,28 +4303,28 @@ - - - - + + + + - - - - + + + + - + - + - @@ -3365,16 +4356,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -3382,7 +4373,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "name", '<NULL>' ) - + inp_lid_16a550ef_cebe_453a_be80_15005a735b68 __DATASOURCE__ key='lidco_id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."inp_lid" @@ -3390,7 +4381,7 @@ def my_form_open(dialog, layer, feature): Lid catalog - + 0 @@ -3413,7 +4404,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3443,50 +4434,182 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - - - - + + + + @@ -3507,28 +4630,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - + - + - @@ -3551,7 +4674,7 @@ def my_form_open(dialog, layer, feature): "lidco_id" - + v_anl_flow_arc_26e14ed9_441a_401b_8aff_3a83432ac182 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_arc" (the_geom) @@ -3559,7 +4682,7 @@ def my_form_open(dialog, layer, feature): Flowtrace arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3582,7 +4705,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3612,290 +4735,341 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + - + - + - - - - - + + + + + @@ -3918,24 +5092,24 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + @@ -3958,7 +5132,7 @@ def my_form_open(dialog, layer, feature): - + v_anl_flow_connec_dedac24e_181f_4b33_9f6e_adb7abb78087 __DATASOURCE__ key='connec_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_connec" (the_geom) @@ -3966,7 +5140,7 @@ def my_form_open(dialog, layer, feature): Flowtrace connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3998,7 +5172,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4011,7 +5185,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4036,190 +5210,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -4320,37 +5542,37 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - + + + @@ -4369,25 +5591,25 @@ def my_form_open(dialog, layer, feature): - - - + + + - - - + + + - + - + - @@ -4419,14 +5641,14 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - + + + - - - + + + @@ -4434,7 +5656,7 @@ def my_form_open(dialog, layer, feature): connec_id - + v_anl_flow_gully_c19802c2_4f79_4ac9_ada5_6300ec45e42e __DATASOURCE__ key='gully_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_gully" (the_geom) @@ -4442,7 +5664,7 @@ def my_form_open(dialog, layer, feature): Flowtrace gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4465,7 +5687,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4495,190 +5717,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + v_anl_flow_node_4d575c87_1bb3_4cfb_9cf4_206d690d4270 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_node" (the_geom) @@ -4779,7 +6076,7 @@ def my_form_open(dialog, layer, feature): Flowtrace node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4802,7 +6099,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4832,190 +6129,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + __XMIN__ __YMIN__ @@ -5150,7 +6522,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5182,7 +6554,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5195,7 +6567,7 @@ def my_form_open(dialog, layer, feature): - + @@ -5220,1162 +6592,934 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - @@ -6386,243 +7530,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -6630,611 +7717,632 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7415,272 +8526,281 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -7712,176 +8832,176 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7889,7 +9009,7 @@ def my_form_open(dialog, layer, feature): "arc_id" - + v_edit_cat_dscenario_b4752e3d_3957_40bd_bea3_4533d45ebea8 __DATASOURCE__ key='dscenario_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_dscenario" @@ -7897,7 +9017,7 @@ def my_form_open(dialog, layer, feature): Dscenario catalog - + 0 @@ -7920,7 +9040,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7950,74 +9070,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -8046,30 +9298,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -8092,7 +9344,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_dwf_scenario_fa6b08c7_e595_4f5a_8ff4_0af0f8476be6 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_dwf_scenario" @@ -8100,7 +9352,7 @@ def my_form_open(dialog, layer, feature): Dwf scenario catalog - + 0 @@ -8123,7 +9375,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8153,74 +9405,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -8249,30 +9633,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -8295,7 +9679,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_arc_4cd4d71c_df9e_44bf_8911_d4932f930ad2 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -8303,7 +9687,7 @@ def my_form_open(dialog, layer, feature): Feature arc catalog - + 0 @@ -8326,7 +9710,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8356,74 +9740,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -8452,30 +9968,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -8498,7 +10014,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_507c5448_7822_4bd9_ab7e_24d7b1f11400 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -8506,7 +10022,7 @@ def my_form_open(dialog, layer, feature): Feature connec catalog - + 0 @@ -8529,7 +10045,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8559,74 +10075,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -8655,30 +10303,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -8701,7 +10349,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_gully_8979adc2_9078_461e_a337_347fb0723b32 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_gully" @@ -8709,7 +10357,7 @@ def my_form_open(dialog, layer, feature): Feature gully catalog - + 0 @@ -8732,7 +10380,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8762,81 +10410,213 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + @@ -8867,32 +10647,32 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + @@ -8915,7 +10695,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_896f1d54_369f_445d_8297_634294e52f3f __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -8923,7 +10703,7 @@ def my_form_open(dialog, layer, feature): Feature node catalog - + 0 @@ -8946,7 +10726,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8976,120 +10756,252 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -9130,58 +11042,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -9204,7 +11116,7 @@ def my_form_open(dialog, layer, feature): "descript" - + v_edit_cat_hydrology_2af1987c_7b5f_4e89_b06a_6ae09607a557 __DATASOURCE__ key='hydrology_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_hydrology" @@ -9212,7 +11124,7 @@ def my_form_open(dialog, layer, feature): Hydro scenario catalog - + 0 @@ -9235,7 +11147,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -9265,71 +11177,203 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -9356,37 +11400,37 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -9409,7 +11453,7 @@ def my_form_open(dialog, layer, feature): "name" - + __XMIN__ __YMIN__ @@ -9429,7 +11473,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9461,7 +11505,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9474,7 +11518,7 @@ def my_form_open(dialog, layer, feature): - + @@ -9499,129 +11543,223 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - @@ -9632,89 +11770,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -9722,584 +11833,592 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -10372,228 +12491,231 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -10625,152 +12747,152 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -10778,7 +12900,7 @@ def my_form_open(dialog, layer, feature): "connec_id" - + v_edit_dimensions_f966f7af_448b_41d3_9ac5_c8adf0f785ea __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -10786,7 +12908,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10809,7 +12931,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10839,1341 +12961,1035 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -12184,750 +14000,684 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -12936,229 +14686,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -13166,175 +14889,175 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -13379,63 +15102,63 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -13467,39 +15190,39 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -13507,7 +15230,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -13527,7 +15250,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13550,7 +15273,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13580,52 +15303,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -13636,97 +15480,97 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -13763,51 +15607,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -13830,7 +15674,7 @@ def my_form_open(dialog, layer, feature): "name" - + v_edit_element_e5ea3ac0_d64b_4db9_ba41_01b6ba993917 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -13838,7 +15682,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13870,7 +15714,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13883,7 +15727,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13908,68 +15752,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -13980,89 +15937,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -14070,233 +16000,233 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14371,108 +16301,108 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -14504,68 +16434,68 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14573,7 +16503,7 @@ def my_form_open(dialog, layer, feature): element_id - + __XMIN__ __YMIN__ @@ -14593,7 +16523,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14616,7 +16546,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14646,52 +16576,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -14706,58 +16757,58 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -14784,28 +16835,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -14828,7 +16879,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -14848,7 +16899,7 @@ def my_form_open(dialog, layer, feature): Gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14880,7 +16931,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14893,7 +16944,7 @@ def my_form_open(dialog, layer, feature): - + @@ -14918,68 +16969,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -14990,89 +17154,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -15080,576 +17217,583 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -15820,249 +17965,252 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -16094,150 +18242,150 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16245,7 +18393,7 @@ def my_form_open(dialog, layer, feature): "gully_id" - + __XMIN__ __YMIN__ @@ -16265,7 +18413,7 @@ def my_form_open(dialog, layer, feature): Inp Conduit - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16288,7 +18436,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16318,181 +18466,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -16509,261 +18729,261 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16848,86 +19068,86 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -16950,7 +19170,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_curve_d08fa407_b3bb_4cb7_a5ef_91aa4cda9e06 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_curve" @@ -16958,7 +19178,7 @@ def my_form_open(dialog, layer, feature): Curve catalog - + 0 @@ -16981,7 +19201,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -17011,53 +19231,185 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - - - - - + + + + + @@ -17080,24 +19432,24 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + @@ -17120,7 +19472,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_divider_92f7afe6_ea02_4f48_a97a_9923bf982e9e __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_divider" (the_geom) @@ -17128,7 +19480,7 @@ def my_form_open(dialog, layer, feature): Inp Divider - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17151,7 +19503,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17181,68 +19533,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -17257,177 +19722,177 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -17488,62 +19953,62 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -17566,7 +20031,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_flwreg_orifice_50bc7e11_184c_4e32_b794_ae09ea6ba93c __DATASOURCE__ key='nodarc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_flwreg_orifice" (the_geom) @@ -17574,7 +20039,7 @@ def my_form_open(dialog, layer, feature): Flowreg Orifice - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17606,7 +20071,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17619,7 +20084,7 @@ def my_form_open(dialog, layer, feature): - + @@ -17644,84 +20109,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -17822,128 +20365,128 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -17988,64 +20531,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -18077,65 +20620,65 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + "nodarc_id" - + v_edit_inp_flwreg_outlet_fd47ee7d_1e55_405d_8ed1_b4d743507524 __DATASOURCE__ key='nodarc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_flwreg_outlet" (the_geom) @@ -18143,7 +20686,7 @@ def my_form_open(dialog, layer, feature): Flowreg Outlet - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18175,7 +20718,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18188,7 +20731,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18213,84 +20756,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -18391,93 +21012,93 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -18512,49 +21133,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - @@ -18586,50 +21207,50 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + "nodarc_id" - + __XMIN__ __YMIN__ @@ -18649,7 +21270,7 @@ def my_form_open(dialog, layer, feature): Flowreg Pump - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18681,7 +21302,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18694,7 +21315,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18719,84 +21340,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -18897,79 +21596,79 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + @@ -19000,43 +21699,43 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + - @@ -19068,44 +21767,44 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + "nodarc_id" - + __XMIN__ __YMIN__ @@ -19125,7 +21824,7 @@ def my_form_open(dialog, layer, feature): Flowreg Weir - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19157,7 +21856,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19170,7 +21869,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19195,84 +21894,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -19373,149 +22150,149 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -19566,73 +22343,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + - @@ -19664,74 +22441,74 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + "road_width" - + __XMIN__ __YMIN__ @@ -19751,7 +22528,7 @@ def my_form_open(dialog, layer, feature): Inp Gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19783,7 +22560,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19796,7 +22573,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19821,68 +22598,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -19983,261 +22846,268 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - - + + - - + + - - + + - + - - + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20291,7 +23162,6 @@ def my_form_open(dialog, layer, feature): - @@ -20301,6 +23171,8 @@ def my_form_open(dialog, layer, feature): + + @@ -20320,121 +23192,123 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -20466,122 +23340,122 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "gully_id" - + __XMIN__ __YMIN__ @@ -20601,7 +23475,7 @@ def my_form_open(dialog, layer, feature): Inp Junction - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20633,7 +23507,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20646,7 +23520,7 @@ def my_form_open(dialog, layer, feature): - + @@ -20671,68 +23545,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -20743,89 +23730,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -20833,149 +23793,149 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -21026,73 +23986,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + - @@ -21124,74 +24084,86 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + "node_id" - + + + __XMIN__ + __YMIN__ + __XMAX__ + __YMAX__ + + + __XMIN__ + __YMIN__ + __XMAX__ + __YMAX__ + v_edit_inp_netgully_c61804d5_a90e_4213_94db_89d7a6fd82d1 __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_netgully" (the_geom) @@ -21199,7 +24171,7 @@ def my_form_open(dialog, layer, feature): Inp Netgully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21231,7 +24203,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21244,7 +24216,7 @@ def my_form_open(dialog, layer, feature): - + @@ -21269,68 +24241,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -21341,89 +24426,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -21431,317 +24489,317 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -21840,142 +24898,142 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -22007,137 +25065,137 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + v_edit_inp_orifice_32a89246_485f_4343_83a9_a00476f5c69a __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_orifice" (the_geom) @@ -22145,7 +25203,7 @@ def my_form_open(dialog, layer, feature): Inp Orifice - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22168,7 +25226,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22198,181 +25256,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -22389,245 +25519,245 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -22708,82 +25838,82 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -22806,7 +25936,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -22826,7 +25956,7 @@ def my_form_open(dialog, layer, feature): Inp Outfall - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22849,7 +25979,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22879,68 +26009,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -22955,149 +26198,149 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -23150,54 +26393,54 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + @@ -23220,7 +26463,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "node_id", '<NULL>' ) - + v_edit_inp_outlet_d832fb0c_f8a4_4d54_ba80_395c65922e09 __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_outlet" (the_geom) @@ -23228,7 +26471,7 @@ def my_form_open(dialog, layer, feature): Inp Outlet - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23251,7 +26494,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23281,181 +26524,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -23472,210 +26787,210 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -23746,72 +27061,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -23834,7 +27149,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_pattern_2936ccc6_4c26_44f8_b547_54809e880988 __DATASOURCE__ key='pattern_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_pattern" @@ -23842,7 +27157,7 @@ def my_form_open(dialog, layer, feature): Pattern catalog - + 0 @@ -23865,7 +27180,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -23895,60 +27210,192 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - - - - - - + + + + + + @@ -23973,26 +27420,26 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -24015,7 +27462,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_pump_504d9dfe_c320_4f0a_b2f8_982c4a57b7d4 __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_pump" (the_geom) @@ -24023,7 +27470,7 @@ def my_form_open(dialog, layer, feature): Inp Pump - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -24046,7 +27493,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -24076,181 +27523,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -24267,198 +27786,198 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24525,68 +28044,68 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -24609,7 +28128,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -24629,7 +28148,7 @@ def my_form_open(dialog, layer, feature): Inp Storage - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -24652,7 +28171,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -24682,68 +28201,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -24758,198 +28390,198 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -25016,68 +28648,68 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -25100,7 +28732,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -25120,7 +28752,7 @@ def my_form_open(dialog, layer, feature): Inp Subcatchment - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25143,7 +28775,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25173,52 +28805,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -25229,227 +28982,227 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -25522,106 +29275,106 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -25644,7 +29397,7 @@ def my_form_open(dialog, layer, feature): "descript" - + v_edit_inp_timeseries_b0be46e5_b633_45f4_8656_1ba6beff77c7 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_timeseries" @@ -25652,7 +29405,7 @@ def my_form_open(dialog, layer, feature): Timeseries catalog - + 0 @@ -25675,7 +29428,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -25705,74 +29458,213 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + + @@ -25799,32 +29692,35 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + + - + - + @@ -25847,7 +29743,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -25867,7 +29763,7 @@ def my_form_open(dialog, layer, feature): Inp Virtual - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25890,7 +29786,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25920,181 +29816,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -26111,86 +30079,86 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -26225,36 +30193,36 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + @@ -26277,7 +30245,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_weir_c2506ec1_5ece_4c77_b2e6_f74f92176abb __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_weir" (the_geom) @@ -26285,7 +30253,7 @@ def my_form_open(dialog, layer, feature): Inp Weir - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26308,7 +30276,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26338,181 +30306,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -26529,268 +30569,268 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -26877,88 +30917,88 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -26981,7 +31021,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -26995,13 +31035,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_ddcae956_abd6_4aab_b1b6_27b885636914 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27024,7 +31064,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27054,157 +31094,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -27217,89 +31340,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -27307,136 +31403,129 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - + + - - + + - - + + - - + + - + - + - - + + - - + + - + - - + + - + - + - - - - - - - - + + @@ -27444,105 +31533,101 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - + + - - - - - - + + - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -27574,42 +31659,42 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -27617,7 +31702,7 @@ def my_form_open(dialog, layer, feature): "link_id" - + __XMIN__ __YMIN__ @@ -27637,7 +31722,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27669,7 +31754,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27682,7 +31767,7 @@ def my_form_open(dialog, layer, feature): - + @@ -27707,1024 +31792,890 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - @@ -28733,89 +32684,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -28823,576 +32747,600 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -29464,225 +33412,234 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -29714,146 +33671,146 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -29861,7 +33818,7 @@ def my_form_open(dialog, layer, feature): "node_id" - + __XMIN__ __YMIN__ @@ -29881,7 +33838,7 @@ def my_form_open(dialog, layer, feature): Inp Raingage - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29904,7 +33861,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29934,117 +33891,211 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + __XMIN__ __YMIN__ @@ -30234,7 +34285,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30257,7 +34308,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30287,52 +34338,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -30347,58 +34519,58 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -30425,28 +34597,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -30469,7 +34641,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -30489,7 +34661,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30521,7 +34693,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30534,7 +34706,7 @@ def my_form_open(dialog, layer, feature): - + @@ -30559,68 +34731,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -30631,243 +34916,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -30875,112 +35103,112 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -30993,40 +35221,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -31058,24 +35286,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -31083,7 +35311,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -31103,7 +35331,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31135,7 +35363,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31148,7 +35376,7 @@ def my_form_open(dialog, layer, feature): - + @@ -31173,52 +35401,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -31229,89 +35578,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -31319,168 +35641,168 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -31497,52 +35819,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -31574,32 +35896,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -31607,7 +35929,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -31627,7 +35949,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31659,7 +35981,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31672,7 +35994,7 @@ def my_form_open(dialog, layer, feature): - + @@ -31697,84 +36019,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -32046,110 +36416,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -32162,40 +36532,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -32227,49 +36597,49 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + v_rpt_arcflow_sum_fe94697c_63f1_4c02_bc5e_4ba0545170ba - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcflow_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcflow_sum" (the_geom) Arc flow - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32292,7 +36662,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32322,410 +36692,404 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + + @@ -32736,243 +37100,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -32980,261 +37287,261 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -33260,79 +37567,79 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -33364,50 +37671,50 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -33415,15 +37722,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_arcpolload_sum_6619cd69_ff7f_4b72_89f9_c7c7477f5903 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcpolload_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcpolload_sum" (the_geom) Arc pollutant load - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33446,7 +37753,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33476,84 +37783,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -33654,101 +38039,101 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -33760,37 +38145,37 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -33822,22 +38207,22 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - - + + + + + + + @@ -33845,15 +38230,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_condsurcharge_sum_e28a01ad_4d2b_4d06_8d45_125bab49ea0d - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_condsurcharge_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_condsurcharge_sum" (the_geom) Conduit surcharge - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33876,7 +38261,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33906,84 +38291,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -34084,145 +38547,145 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -34238,49 +38701,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - @@ -34312,30 +38775,30 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -34343,15 +38806,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_flowclass_sum_74485e21_3847_464e_9b2b_5e10a61ceebc - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_flowclass_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_flowclass_sum" (the_geom) Flow class - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34374,7 +38837,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34404,84 +38867,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -34582,167 +39123,167 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -34760,55 +39301,55 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - @@ -34840,34 +39381,34 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -34875,15 +39416,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_lidperfomance_sum_52b548dc_286d_4302_b8ba_4abc723c1cd2 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_lidperfomance_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_lidperfomance_sum" (the_geom) LID performance - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34906,7 +39447,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34936,52 +39477,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -34992,89 +39654,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -35082,173 +39717,173 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -35266,55 +39901,55 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - @@ -35346,34 +39981,34 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -35381,15 +40016,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_nodedepth_sum_f84277ab_00b9_4201_86ba_4f07e698d8e4 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodedepth_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodedepth_sum" (the_geom) Node depth - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35412,7 +40047,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35442,68 +40077,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -35514,89 +40262,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -35604,156 +40325,156 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -35770,52 +40491,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -35847,32 +40568,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -35880,15 +40601,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_nodeflooding_sum_69028733_3c38_420a_8c26_d10e8f2a4a3e - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeflooding_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeflooding_sum" (the_geom) Node flooding - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35911,7 +40632,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35941,817 +40662,660 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - + + @@ -36762,89 +41326,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -36852,153 +41389,153 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -37015,52 +41552,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -37092,32 +41629,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -37125,15 +41662,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_nodeinflow_sum_1d195e0b_680d_435f_87e6_1e4a23a90ccc - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeinflow_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeinflow_sum" (the_geom) Node inflow - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37156,7 +41693,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37186,68 +41723,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -37258,89 +41908,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -37348,186 +41971,186 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -37546,58 +42169,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -37629,36 +42252,36 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -37666,15 +42289,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_nodesurcharge_sum_c2b99680_ff40_4228_81d0_0d5035e5a6d0 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodesurcharge_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodesurcharge_sum" (the_geom) Node surcharge - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37697,7 +42320,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37727,68 +42350,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -37799,89 +42535,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -37889,138 +42598,138 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + @@ -38035,46 +42744,46 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -38106,28 +42815,28 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + @@ -38135,15 +42844,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_outfallflow_sum_26c1efdc_dde6_4fb1_9dd9_68df27a4f6eb - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallflow_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallflow_sum" (the_geom) Outfall flow - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38166,7 +42875,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38196,68 +42905,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -38268,89 +43090,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -38358,134 +43153,134 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + @@ -38500,46 +43295,46 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -38571,28 +43366,28 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + @@ -38600,15 +43395,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_outfallload_sum_94b712f3_9775_4c14_9732_cb1b3f5507df - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallload_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallload_sum" (the_geom) Outfall load - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38631,7 +43426,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38661,68 +43456,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -38733,89 +43641,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -38823,112 +43704,112 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -38941,40 +43822,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -39006,24 +43887,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -39031,15 +43912,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_pumping_sum_3479daea_2671_4c8a_8119_e6046cdb3cd2 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_pumping_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_pumping_sum" (the_geom) Pumping summary - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39062,7 +43943,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39092,84 +43973,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -39270,189 +44229,189 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -39472,61 +44431,61 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - + - @@ -39558,38 +44517,38 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -39597,15 +44556,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_storagevol_sum_28e9ebe5_9723_4378_bb06_8d6fc1cc2c4c - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_storagevol_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_storagevol_sum" (the_geom) Storage volume - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39628,7 +44587,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39658,68 +44617,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -39730,89 +44802,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -39820,178 +44865,178 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -40010,58 +45055,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -40093,36 +45138,36 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -40130,15 +45175,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_subcatchrunoff_sum_e1348135_a2a0_407b_95a9_dfe57f782a63 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchrunoff_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchrunoff_sum" (the_geom) Subcatchment runoff - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40161,7 +45206,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40191,293 +45236,356 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - + + + + + + - - - + + + - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - - + - - - + - - - - - - - + + @@ -40488,89 +45596,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -40578,217 +45659,217 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -40810,67 +45891,67 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - @@ -40902,42 +45983,42 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -40945,15 +46026,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_subcatchwasoff_sum_30c8fcc2_d459_46b6_82bc_71a31639446d - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchwasoff_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchwasoff_sum" (the_geom) Subcatchment washoff - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40976,7 +46057,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41006,52 +46087,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -41062,89 +46264,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -41152,96 +46327,96 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - - - - - - + + + + + + @@ -41252,34 +46427,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - + - + - @@ -41311,20 +46486,20 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - + + + + + + - - - - - - + + + + + + @@ -41332,7 +46507,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + ve_pol_connec_89eb130b_0cb0_405a_a2b2_9133116f7c8e __DATASOURCE__ key='pol_id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."ve_pol_connec" (the_geom) @@ -41340,7 +46515,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41372,7 +46547,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41385,7 +46560,7 @@ def my_form_open(dialog, layer, feature): - + @@ -41410,52 +46585,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -41466,89 +46762,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -41556,57 +46825,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -41629,29 +46898,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -41683,14 +46952,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -41698,7 +46967,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -41718,7 +46987,7 @@ def my_form_open(dialog, layer, feature): Gully polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41750,7 +47019,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41763,7 +47032,7 @@ def my_form_open(dialog, layer, feature): - + @@ -41788,52 +47057,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -41844,89 +47234,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -41934,57 +47297,64 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + + + + + + + - + - + - + - - - - - + + + + + + @@ -42005,30 +47376,33 @@ def my_form_open(dialog, layer, feature): + - - - - - + + + + + + - - - - - + + + + + + - + - + - @@ -42060,12 +47434,12 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - + + - - + + @@ -42073,7 +47447,7 @@ def my_form_open(dialog, layer, feature): pol_id - + __XMIN__ __YMIN__ @@ -42093,7 +47467,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42125,7 +47499,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42138,7 +47512,7 @@ def my_form_open(dialog, layer, feature): - + @@ -42163,184 +47537,272 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - + + + + + + - - - + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + - + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - @@ -42349,90 +47811,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -42440,57 +47875,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -42513,29 +47948,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -42567,14 +48002,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -42582,7 +48017,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -42602,7 +48037,7 @@ def my_form_open(dialog, layer, feature): Gully2Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42634,7 +48069,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42647,7 +48082,7 @@ def my_form_open(dialog, layer, feature): - + @@ -42672,84 +48107,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -42850,74 +48363,63 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - - - - - - + + - - - - + + - - - + + - + - + - @@ -42949,19 +48451,19 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + - - - + + + @@ -43027,14 +48529,7 @@ def my_form_open(dialog, layer, feature): - - - - - - 1 - true - + 2 @@ -43160,9 +48655,9 @@ def my_form_open(dialog, layer, feature): @@ -43189,105 +48684,83 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - + + + @@ -43311,646 +48784,932 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -43982,62 +49741,62 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -44053,47 +49812,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -44109,45 +49868,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -44163,109 +49922,109 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -44297,97 +50056,97 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -44403,52 +50162,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -44464,44 +50223,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -44517,44 +50276,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -44570,114 +50329,114 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -44709,58 +50468,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -44776,52 +50535,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -44837,43 +50596,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -44889,80 +50648,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -44978,49 +50737,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -45036,59 +50795,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -45120,45 +50879,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -45167,145 +50926,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -45315,69 +51074,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -45409,62 +51168,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -45480,446 +51239,446 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -45928,290 +51687,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -46221,91 +51980,91 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -46337,69 +52096,69 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -46408,145 +52167,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -46556,67 +52315,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -46648,61 +52407,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -46711,145 +52470,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -46859,67 +52618,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -46951,143 +52710,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -47096,145 +52855,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47244,88 +53003,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -47357,85 +53116,85 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -47444,144 +53203,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47591,77 +53350,77 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -47693,73 +53452,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE( "id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -47768,144 +53527,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47915,73 +53674,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -48013,224 +53772,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -48238,45 +53940,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -48465,127 +54365,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -48593,15 +54614,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -48609,254 +54630,287 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -48888,64 +54942,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -48961,47 +55015,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -49017,45 +55071,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -49071,113 +55125,113 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -49209,98 +55263,98 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -49316,52 +55370,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -49377,44 +55431,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -49430,44 +55484,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -49483,118 +55537,118 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - .. @@ -49626,59 +55680,59 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -49694,52 +55748,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -49755,43 +55809,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -49807,80 +55861,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -49896,49 +55950,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -49954,59 +56008,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -50038,54 +56092,54 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -50094,145 +56148,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -50242,75 +56296,75 @@ def my_form_open(dialog, layer, feature): short_descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + - .. @@ -50342,45 +56396,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("short_descript", '<NULL>') 2 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -50389,145 +56443,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -50537,69 +56591,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -50631,62 +56685,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -50702,51 +56756,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -50762,259 +56816,259 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("macroexp_id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -51023,167 +57077,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -51193,175 +57247,175 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/init_ui/ws_man_pipe.ui @@ -51393,38 +57447,38 @@ def my_form_open(dialog, layer, feature): - - - - - - @@ -51448,92 +57502,92 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 1 - - + + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -51542,145 +57596,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -51690,65 +57744,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -51780,41 +57834,41 @@ def my_form_open(dialog, layer, feature): - + 2 - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -51823,145 +57877,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -51971,65 +58025,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -52061,477 +58115,477 @@ def my_form_open(dialog, layer, feature): - + 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -52541,180 +58595,180 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/ws_man_connec.ui @@ -52750,503 +58804,503 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -53255,290 +59309,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -53548,92 +59602,92 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -53665,78 +59719,78 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -53745,167 +59799,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -53915,81 +59969,81 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -54021,138 +60075,138 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -54161,145 +60215,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -54309,122 +60363,122 @@ def my_form_open(dialog, layer, feature): element_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - .. @@ -54453,14 +60507,14 @@ def my_form_open(dialog, layer, feature): - - @@ -54469,103 +60523,103 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "element_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -54574,145 +60628,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -54722,89 +60776,89 @@ def my_form_open(dialog, layer, feature): link_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - + + + + + + + + + + + + + - + - .. @@ -54836,997 +60890,997 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + COALESCE( "link_id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -55835,145 +61889,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55983,181 +62037,181 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - . @@ -56199,117 +62253,117 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -56318,145 +62372,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -56466,67 +62520,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -56558,61 +62612,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -56621,145 +62675,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -56769,67 +62823,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -56861,143 +62915,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -57006,145 +63060,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -57154,88 +63208,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -57267,72 +63321,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -57341,146 +63395,146 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -57490,73 +63544,73 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + ../test_1230 - - - - - + + + + + - + - ../test_1230 @@ -57588,71 +63642,71 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -57661,144 +63715,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -57808,73 +63862,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -57906,70 +63960,70 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - - + + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -57978,145 +64032,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -58126,78 +64180,78 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - + + + + + + + + - + - .. @@ -58229,220 +64283,163 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) 1 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -58450,21 +64447,21 @@ def my_form_open(dialog, layer, feature): - + - + - + - + @@ -58472,189 +64469,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -58670,14 +64645,14 @@ def my_form_open(dialog, layer, feature): - + @@ -58685,189 +64660,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -58885,17 +64838,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -58908,19 +64862,55 @@ def my_form_open(dialog, layer, feature): - - + + + + + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + diff --git a/resources/templates/qgisproject/en_US/ud_inventory.qgs b/resources/templates/qgisproject/en_US/ud_inventory.qgs index 4fd62124c..301bb07b6 100644 --- a/resources/templates/qgisproject/en_US/ud_inventory.qgs +++ b/resources/templates/qgisproject/en_US/ud_inventory.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,182 +21,182 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -224,25 +223,25 @@ v_edit_link_ddcae956_abd6_4aab_b1b6_27b885636914 - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -257,7 +256,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -274,157 +273,157 @@ - - - - - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_75f68545_1c89_4491_af1e_6b2e300b00c6 @@ -466,7 +439,7 @@ - + 0 @@ -489,7 +462,7 @@ - + 0 @@ -509,7 +482,7 @@ - + cat_arc_52f24e12_c228_47c2_b347_69b187f2d984 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_arc" @@ -517,7 +490,7 @@ Arc catalog - + 0 @@ -540,7 +513,7 @@ - + 0 @@ -570,256 +543,388 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -900,82 +1005,82 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -998,7 +1103,7 @@ - + cat_connec_c478157f_493b_462e_addb_2de2fbf4f4da __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_connec" @@ -1006,7 +1111,7 @@ Connec catalog - + 0 @@ -1029,7 +1134,7 @@ - + 0 @@ -1059,130 +1164,262 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1227,46 +1464,46 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + @@ -1289,7 +1526,7 @@ - + cat_grate_c32f087c_3368_4aa6_966e_1ff0e19c5894 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_grate" @@ -1297,7 +1534,7 @@ Grate catalog - + 0 @@ -1320,7 +1557,7 @@ - + 0 @@ -1350,151 +1587,283 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -1545,52 +1914,52 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + @@ -1613,7 +1982,7 @@ - + cat_mat_arc_bba8ab41_f652_4864_95d3_45c7e39b5175 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_arc" @@ -1621,7 +1990,7 @@ Arc material catalog - + 0 @@ -1644,7 +2013,7 @@ - + 0 @@ -1674,53 +2043,185 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - - - - - + + + + + @@ -1743,24 +2244,24 @@ - - - - - + + + + + - - - - - + + + + + - + - + @@ -1783,7 +2284,7 @@ - + cat_mat_grate_3021f691_143d_43b1_b6a3_c4c83c58791b __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_grate" @@ -1791,7 +2292,7 @@ Grate material catalog - + 0 @@ -1814,7 +2315,7 @@ - + 0 @@ -1844,46 +2345,178 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - - - - + + + + @@ -1904,22 +2537,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -1942,7 +2575,7 @@ - + cat_mat_node_78cd77ff_0c52_4719_a447_c588e95b21a3 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_node" @@ -1950,7 +2583,7 @@ Node material catalog - + 0 @@ -1973,7 +2606,7 @@ - + 0 @@ -2003,46 +2636,178 @@ 1 0 - + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - - - - + + + + @@ -2063,22 +2828,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -2101,7 +2866,7 @@ - + cat_node_612b7617_0e3d_43f8_bffe_e49e3afa89f5 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_node" @@ -2109,7 +2874,7 @@ Node catalog - + 0 @@ -2132,7 +2897,7 @@ - + 0 @@ -2162,144 +2927,276 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -2348,50 +3245,50 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + @@ -2414,7 +3311,7 @@ - + __XMIN__ __YMIN__ @@ -2434,7 +3331,7 @@ Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2466,7 +3363,7 @@ - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2479,7 +3376,7 @@ - + @@ -2504,52 +3401,173 @@ 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -2560,89 +3578,62 @@ 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -2650,78 +3641,78 @@ - + - + - - + - + - + - + - - - - + + + + @@ -2730,28 +3721,28 @@ - - - - + + + + - - - - + + + + - + - + - @@ -2783,16 +3774,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -2800,7 +3791,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "name", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -2820,7 +3811,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2852,7 +3843,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2865,7 +3856,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2890,1162 +3881,934 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - @@ -4056,243 +4819,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4300,611 +5006,632 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -5085,272 +5815,281 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -5382,176 +6121,176 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -5559,7 +6298,7 @@ def my_form_open(dialog, layer, feature): "arc_id" - + v_edit_cat_feature_arc_4cd4d71c_df9e_44bf_8911_d4932f930ad2 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -5567,7 +6306,7 @@ def my_form_open(dialog, layer, feature): Feature arc catalog - + 0 @@ -5590,7 +6329,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5620,74 +6359,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -5716,30 +6587,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -5762,7 +6633,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_507c5448_7822_4bd9_ab7e_24d7b1f11400 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -5770,7 +6641,7 @@ def my_form_open(dialog, layer, feature): Feature connec catalog - + 0 @@ -5793,7 +6664,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5823,74 +6694,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -5919,30 +6922,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -5965,7 +6968,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_gully_8979adc2_9078_461e_a337_347fb0723b32 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_gully" @@ -5973,7 +6976,7 @@ def my_form_open(dialog, layer, feature): Feature gully catalog - + 0 @@ -5996,7 +6999,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -6026,81 +7029,213 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + @@ -6131,32 +7266,32 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + @@ -6179,7 +7314,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_896f1d54_369f_445d_8297_634294e52f3f __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -6187,7 +7322,7 @@ def my_form_open(dialog, layer, feature): Feature node catalog - + 0 @@ -6210,7 +7345,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -6240,120 +7375,252 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -6394,58 +7661,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -6468,7 +7735,7 @@ def my_form_open(dialog, layer, feature): "descript" - + __XMIN__ __YMIN__ @@ -6488,7 +7755,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -6520,7 +7787,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -6533,7 +7800,7 @@ def my_form_open(dialog, layer, feature): - + @@ -6558,129 +7825,223 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + - @@ -6691,89 +8052,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -6781,587 +8115,595 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7431,228 +8773,231 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -7684,152 +9029,152 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7837,7 +9182,7 @@ def my_form_open(dialog, layer, feature): "connec_id" - + v_edit_dimensions_f966f7af_448b_41d3_9ac5_c8adf0f785ea __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -7845,7 +9190,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7868,7 +9213,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7898,1341 +9243,1035 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -9243,750 +10282,684 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -9995,229 +10968,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -10225,175 +11171,175 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -10438,63 +11384,63 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -10526,39 +11472,39 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -10566,7 +11512,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -10586,7 +11532,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10609,7 +11555,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10639,52 +11585,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -10695,97 +11762,97 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -10822,51 +11889,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -10889,7 +11956,7 @@ def my_form_open(dialog, layer, feature): "name" - + v_edit_element_e5ea3ac0_d64b_4db9_ba41_01b6ba993917 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -10897,7 +11964,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10929,7 +11996,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10942,7 +12009,7 @@ def my_form_open(dialog, layer, feature): - + @@ -10967,68 +12034,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -11039,89 +12219,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -11129,233 +12282,233 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11430,108 +12583,108 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -11563,68 +12716,68 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11632,7 +12785,7 @@ def my_form_open(dialog, layer, feature): element_id - + __XMIN__ __YMIN__ @@ -11652,7 +12805,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11675,7 +12828,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11705,52 +12858,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -11765,58 +13039,58 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -11843,28 +13117,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -11887,7 +13161,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -11907,7 +13181,7 @@ def my_form_open(dialog, layer, feature): Gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11939,7 +13213,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11952,7 +13226,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11977,161 +13251,247 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - 0 - 0 - 1 - - - - - - + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -12139,576 +13499,583 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -12879,249 +14247,252 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -13153,150 +14524,150 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -13304,7 +14675,7 @@ def my_form_open(dialog, layer, feature): "gully_id" - + __XMIN__ __YMIN__ @@ -13318,13 +14689,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_ddcae956_abd6_4aab_b1b6_27b885636914 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13347,7 +14718,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13377,157 +14748,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - @@ -13540,89 +14994,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -13630,136 +15057,129 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - + + - - + + - - + + - - + + - + - + - - + + - - + + - + - - + + - + - + - - - - - - - - + + @@ -13767,105 +15187,101 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - + + - - - - - - + + - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -13897,42 +15313,42 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -13940,7 +15356,7 @@ def my_form_open(dialog, layer, feature): "link_id" - + __XMIN__ __YMIN__ @@ -13960,7 +15376,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13992,7 +15408,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14005,7 +15421,7 @@ def my_form_open(dialog, layer, feature): - + @@ -14030,1024 +15446,890 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - + - - - - - - - - - - - - - - - - - - - - - + + - - - @@ -15056,89 +16338,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -15146,576 +16401,600 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -15787,225 +17066,234 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -16037,146 +17325,146 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16184,7 +17472,7 @@ def my_form_open(dialog, layer, feature): "node_id" - + __XMIN__ __YMIN__ @@ -16204,7 +17492,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16227,7 +17515,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16257,118 +17545,239 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - + + - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - - - - - - - + + + + + + + @@ -16395,28 +17804,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -16439,7 +17848,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -16459,7 +17868,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16491,7 +17900,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16504,7 +17913,7 @@ def my_form_open(dialog, layer, feature): - + @@ -16529,68 +17938,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -16601,243 +18123,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -16845,112 +18310,112 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -16963,40 +18428,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -17028,24 +18493,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -17053,7 +18518,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -17073,7 +18538,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17105,7 +18570,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17118,7 +18583,7 @@ def my_form_open(dialog, layer, feature): - + @@ -17143,52 +18608,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -17199,89 +18785,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -17289,168 +18848,168 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -17467,52 +19026,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -17544,32 +19103,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -17577,7 +19136,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -17597,7 +19156,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17629,7 +19188,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17642,7 +19201,7 @@ def my_form_open(dialog, layer, feature): - + @@ -17667,84 +19226,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -17755,260 +19419,203 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -18016,110 +19623,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -18132,40 +19739,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -18197,41 +19804,41 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + ve_pol_connec_89eb130b_0cb0_405a_a2b2_9133116f7c8e __DATASOURCE__ key='pol_id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."ve_pol_connec" (the_geom) @@ -18239,7 +19846,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18271,7 +19878,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18284,7 +19891,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18309,52 +19916,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -18365,89 +20093,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -18455,57 +20156,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -18528,29 +20229,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -18582,14 +20283,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -18597,7 +20298,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -18617,7 +20318,7 @@ def my_form_open(dialog, layer, feature): Gully polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18649,7 +20350,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18662,7 +20363,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18687,52 +20388,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -18743,89 +20565,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -18833,57 +20628,64 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + + + + + + + - + - + - + - - - - - + + + + + + @@ -18904,30 +20707,33 @@ def my_form_open(dialog, layer, feature): + - - - - - + + + + + + - - - - - + + + + + + - + - + - @@ -18959,12 +20765,12 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - + + - - + + @@ -18972,7 +20778,7 @@ def my_form_open(dialog, layer, feature): pol_id - + __XMIN__ __YMIN__ @@ -18992,7 +20798,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19024,7 +20830,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19037,7 +20843,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19062,184 +20868,272 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + @@ -19248,90 +21142,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -19339,57 +21206,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -19412,29 +21279,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -19466,14 +21333,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -19502,14 +21369,7 @@ def my_form_open(dialog, layer, feature): - - - - - - 1 - true - + 2 @@ -19635,9 +21495,9 @@ def my_form_open(dialog, layer, feature): @@ -19664,105 +21524,83 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - - + + @@ -19770,15 +21608,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -19786,646 +21624,932 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + - - - + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -20457,62 +22581,62 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -20528,47 +22652,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -20584,45 +22708,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -20638,109 +22762,109 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -20772,97 +22896,97 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -20878,52 +23002,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -20939,44 +23063,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -20992,44 +23116,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -21045,114 +23169,114 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -21184,58 +23308,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -21251,52 +23375,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -21312,43 +23436,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -21364,80 +23488,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -21453,49 +23577,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -21511,59 +23635,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -21595,45 +23719,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -21642,145 +23766,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -21790,69 +23914,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -21884,62 +24008,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -21955,446 +24079,446 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -22403,290 +24527,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -22696,91 +24820,91 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -22812,69 +24936,69 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -22883,145 +25007,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -23031,67 +25155,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -23123,61 +25247,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -23186,145 +25310,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -23334,67 +25458,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -23426,143 +25550,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -23571,145 +25695,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -23719,88 +25843,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -23832,85 +25956,85 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -23919,144 +26043,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24066,77 +26190,77 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -24168,73 +26292,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE( "id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -24243,144 +26367,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24390,73 +26514,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -24488,224 +26612,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - + @@ -24713,45 +26780,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - - - - - - - - - - - + + @@ -24759,9 +26815,9 @@ def my_form_open(dialog, layer, feature): @@ -24769,170 +26825,379 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -24940,127 +27205,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -25068,15 +27454,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -25084,254 +27470,287 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -25363,64 +27782,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -25436,47 +27855,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -25492,45 +27911,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -25546,113 +27965,113 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -25684,98 +28103,98 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -25791,52 +28210,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -25852,44 +28271,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -25905,44 +28324,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -25958,118 +28377,118 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - .. @@ -26101,59 +28520,59 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -26169,52 +28588,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -26230,43 +28649,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -26282,80 +28701,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -26371,49 +28790,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -26429,59 +28848,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -26513,54 +28932,54 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -26569,145 +28988,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -26717,75 +29136,75 @@ def my_form_open(dialog, layer, feature): short_descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + - .. @@ -26817,45 +29236,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("short_descript", '<NULL>') 2 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -26864,145 +29283,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -27012,69 +29431,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -27106,62 +29525,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -27177,51 +29596,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -27237,259 +29656,259 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("macroexp_id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -27498,167 +29917,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -27668,175 +30087,175 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/init_ui/ws_man_pipe.ui @@ -27868,38 +30287,38 @@ def my_form_open(dialog, layer, feature): - - - - - - @@ -27923,92 +30342,92 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 1 - - + + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -28017,145 +30436,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -28165,65 +30584,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -28255,41 +30674,41 @@ def my_form_open(dialog, layer, feature): - + 2 - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -28298,145 +30717,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -28446,65 +30865,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -28536,477 +30955,477 @@ def my_form_open(dialog, layer, feature): - + 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -29016,180 +31435,180 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/ws_man_connec.ui @@ -29225,503 +31644,503 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -29730,290 +32149,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30023,92 +32442,92 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -30140,78 +32559,78 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -30220,167 +32639,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30390,81 +32809,81 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -30496,138 +32915,138 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -30636,145 +33055,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30784,122 +33203,122 @@ def my_form_open(dialog, layer, feature): element_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - .. @@ -30928,14 +33347,14 @@ def my_form_open(dialog, layer, feature): - - @@ -30944,103 +33363,103 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "element_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -31049,145 +33468,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31197,89 +33616,89 @@ def my_form_open(dialog, layer, feature): link_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - + + + + + + + + + + + + + - + - .. @@ -31311,997 +33730,997 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + COALESCE( "link_id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -32310,145 +34729,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -32458,181 +34877,181 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - . @@ -32674,117 +35093,117 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -32793,145 +35212,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -32941,67 +35360,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -33033,61 +35452,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -33096,145 +35515,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33244,67 +35663,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -33336,143 +35755,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -33481,145 +35900,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33629,88 +36048,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -33742,72 +36161,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -33816,146 +36235,146 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33965,73 +36384,73 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + ../test_1230 - - - - - + + + + + - + - ../test_1230 @@ -34063,71 +36482,71 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -34136,144 +36555,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -34283,73 +36702,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -34381,70 +36800,70 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - - + + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -34453,145 +36872,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -34601,78 +37020,78 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - + + + + + + + + - + - .. @@ -34704,220 +37123,163 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) 1 - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - + @@ -34925,21 +37287,21 @@ def my_form_open(dialog, layer, feature): - + - + - + - + @@ -34947,189 +37309,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -35145,14 +37485,14 @@ def my_form_open(dialog, layer, feature): - + @@ -35160,189 +37500,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -35360,17 +37678,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35383,19 +37702,55 @@ def my_form_open(dialog, layer, feature): - - + + + + + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + diff --git a/resources/templates/qgisproject/en_US/ud_master.qgs b/resources/templates/qgisproject/en_US/ud_master.qgs index 03ee35ce9..4aaedeb64 100644 --- a/resources/templates/qgisproject/en_US/ud_master.qgs +++ b/resources/templates/qgisproject/en_US/ud_master.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,507 +21,507 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -561,8 +560,6 @@ v_edit_inp_pump_504d9dfe_c320_4f0a_b2f8_982c4a57b7d4 v_edit_inp_virtual_bbf4da2d_da98_42b8_9d63_c899a670f981 v_edit_inp_weir_c2506ec1_5ece_4c77_b2e6_f74f92176abb - v_plan_psector_arc_e6a59222_3da7_4c3e_a715_d992bf82c7e1 - v_plan_psector_node_2bc08b43_8656_4945_806f_d9098b70c8a2 ve_pol_node_5b084ed1_2aea_4af8_8ca6_dbc250e7013e ve_pol_connec_89eb130b_0cb0_405a_a2b2_9133116f7c8e v_edit_inp_flwreg_orifice_50bc7e11_184c_4e32_b794_ae09ea6ba93c @@ -592,72 +589,74 @@ v_rpt_storagevol_sum_28e9ebe5_9723_4378_bb06_8d6fc1cc2c4c v_rpt_subcatchrunoff_sum_e1348135_a2a0_407b_95a9_dfe57f782a63 v_rpt_subcatchwasoff_sum_30c8fcc2_d459_46b6_82bc_71a31639446d + v_plan_psector_arc_dc4a3df0_fa35_428b_9327_a36255ef653b + v_plan_psector_node_27b614c1_4c89_4dcf_8505_73bee9ff4b28 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -672,7 +671,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -689,449 +688,449 @@ - - - - - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_75f68545_1c89_4491_af1e_6b2e300b00c6 @@ -1173,7 +1146,7 @@ - + 0 @@ -1196,7 +1169,7 @@ - + 0 @@ -1216,7 +1189,7 @@ - + cat_arc_52f24e12_c228_47c2_b347_69b187f2d984 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_arc" @@ -1224,7 +1197,7 @@ Arc catalog - + 0 @@ -1247,7 +1220,7 @@ - + 0 @@ -1277,256 +1250,388 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1607,82 +1712,82 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -1705,7 +1810,7 @@ - + cat_connec_c478157f_493b_462e_addb_2de2fbf4f4da __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_connec" @@ -1713,7 +1818,7 @@ Connec catalog - + 0 @@ -1736,7 +1841,7 @@ - + 0 @@ -1766,130 +1871,262 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1934,46 +2171,46 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + @@ -1996,7 +2233,7 @@ - + cat_grate_c32f087c_3368_4aa6_966e_1ff0e19c5894 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_grate" @@ -2004,7 +2241,7 @@ Grate catalog - + 0 @@ -2027,7 +2264,7 @@ - + 0 @@ -2057,151 +2294,283 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -2252,52 +2621,52 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + @@ -2320,7 +2689,7 @@ - + cat_mat_arc_bba8ab41_f652_4864_95d3_45c7e39b5175 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_arc" @@ -2328,7 +2697,7 @@ Arc material catalog - + 0 @@ -2351,7 +2720,7 @@ - + 0 @@ -2381,53 +2750,185 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - - - - - + + + + + @@ -2450,24 +2951,24 @@ - - - - - + + + + + - - - - - + + + + + - + - + @@ -2490,7 +2991,7 @@ - + cat_mat_grate_3021f691_143d_43b1_b6a3_c4c83c58791b __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_grate" @@ -2498,7 +2999,7 @@ Grate material catalog - + 0 @@ -2521,7 +3022,7 @@ - + 0 @@ -2551,46 +3052,178 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - - - - + + + + @@ -2611,22 +3244,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -2649,7 +3282,7 @@ - + cat_mat_node_78cd77ff_0c52_4719_a447_c588e95b21a3 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_node" @@ -2657,7 +3290,7 @@ Node material catalog - + 0 @@ -2680,7 +3313,7 @@ - + 0 @@ -2710,46 +3343,178 @@ 1 0 - + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + @@ -2770,22 +3535,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -2808,7 +3573,7 @@ - + cat_node_612b7617_0e3d_43f8_bffe_e49e3afa89f5 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_node" @@ -2816,7 +3581,7 @@ Node catalog - + 0 @@ -2839,7 +3604,7 @@ - + 0 @@ -2869,144 +3634,276 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -3055,50 +3952,50 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + @@ -3121,7 +4018,7 @@ - + __XMIN__ __YMIN__ @@ -3141,7 +4038,7 @@ Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3173,7 +4070,7 @@ - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3186,7 +4083,7 @@ - + @@ -3211,52 +4108,173 @@ 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -3267,89 +4285,62 @@ 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -3357,78 +4348,78 @@ - + - + - - + - + - + - + - - - - + + + + @@ -3437,28 +4428,28 @@ - - - - + + + + - - - - + + + + - + - + - @@ -3490,16 +4481,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -3507,7 +4498,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "name", '<NULL>' ) - + inp_lid_16a550ef_cebe_453a_be80_15005a735b68 __DATASOURCE__ key='lidco_id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."inp_lid" @@ -3515,7 +4506,7 @@ def my_form_open(dialog, layer, feature): Lid catalog - + 0 @@ -3538,7 +4529,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3568,50 +4559,182 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - - - - + + + + @@ -3632,28 +4755,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - + - + - @@ -3676,7 +4799,7 @@ def my_form_open(dialog, layer, feature): "lidco_id" - + plan_price_9e588368_c73a_413c_9565_da06d40e509b __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."plan_price" @@ -3684,7 +4807,7 @@ def my_form_open(dialog, layer, feature): Price - + 0 @@ -3707,7 +4830,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3737,62 +4860,194 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - - - - - - + + + + + + @@ -3817,34 +5072,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - + - + - @@ -3867,7 +5122,7 @@ def my_form_open(dialog, layer, feature): "descript" - + plan_price_compost_ad0d2671_8427_4de0_adce_51edc8a29220 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."plan_price_compost" @@ -3875,7 +5130,7 @@ def my_form_open(dialog, layer, feature): Compost price - + 0 @@ -3898,7 +5153,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3928,48 +5183,180 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - + + + + @@ -3990,28 +5377,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - + - + - @@ -4034,7 +5421,7 @@ def my_form_open(dialog, layer, feature): "id" - + v_anl_flow_arc_26e14ed9_441a_401b_8aff_3a83432ac182 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_arc" (the_geom) @@ -4042,7 +5429,7 @@ def my_form_open(dialog, layer, feature): Flowtrace arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4065,7 +5452,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4095,238 +5482,289 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + v_anl_flow_connec_dedac24e_181f_4b33_9f6e_adb7abb78087 __DATASOURCE__ key='connec_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_connec" (the_geom) @@ -4449,7 +5887,7 @@ def my_form_open(dialog, layer, feature): Flowtrace connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4481,7 +5919,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4494,7 +5932,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4519,190 +5957,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -4803,37 +6289,37 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - + + + @@ -4852,25 +6338,25 @@ def my_form_open(dialog, layer, feature): - - - + + + - - - + + + - + - + - @@ -4902,14 +6388,14 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - + + + - - - + + + @@ -4917,7 +6403,7 @@ def my_form_open(dialog, layer, feature): connec_id - + v_anl_flow_gully_c19802c2_4f79_4ac9_ada5_6300ec45e42e __DATASOURCE__ key='gully_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_gully" (the_geom) @@ -4925,7 +6411,7 @@ def my_form_open(dialog, layer, feature): Flowtrace gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4948,7 +6434,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4978,190 +6464,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + v_anl_flow_node_4d575c87_1bb3_4cfb_9cf4_206d690d4270 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_node" (the_geom) @@ -5262,7 +6823,7 @@ def my_form_open(dialog, layer, feature): Flowtrace node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5285,7 +6846,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5315,190 +6876,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + __XMIN__ __YMIN__ @@ -5633,7 +7269,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5665,7 +7301,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5678,7 +7314,7 @@ def my_form_open(dialog, layer, feature): - + @@ -5703,1162 +7339,934 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - + - - - - - - - - - - - - - - - - - - - - @@ -6869,243 +8277,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -7113,611 +8464,632 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7898,272 +9273,281 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -8195,176 +9579,176 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8372,7 +9756,7 @@ def my_form_open(dialog, layer, feature): "arc_id" - + v_edit_cat_dscenario_b4752e3d_3957_40bd_bea3_4533d45ebea8 __DATASOURCE__ key='dscenario_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_dscenario" @@ -8380,7 +9764,7 @@ def my_form_open(dialog, layer, feature): Dscenario catalog - + 0 @@ -8403,7 +9787,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8433,74 +9817,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -8529,30 +10045,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -8575,7 +10091,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_dwf_scenario_fa6b08c7_e595_4f5a_8ff4_0af0f8476be6 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_dwf_scenario" @@ -8583,7 +10099,7 @@ def my_form_open(dialog, layer, feature): Dwf scenario catalog - + 0 @@ -8606,7 +10122,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8636,74 +10152,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -8732,30 +10380,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -8778,7 +10426,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_arc_4cd4d71c_df9e_44bf_8911_d4932f930ad2 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -8786,7 +10434,7 @@ def my_form_open(dialog, layer, feature): Feature arc catalog - + 0 @@ -8809,7 +10457,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -8839,74 +10487,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -8935,30 +10715,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -8981,7 +10761,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_507c5448_7822_4bd9_ab7e_24d7b1f11400 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -8989,7 +10769,7 @@ def my_form_open(dialog, layer, feature): Feature connec catalog - + 0 @@ -9012,7 +10792,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -9042,74 +10822,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -9138,30 +11050,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -9184,7 +11096,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_gully_8979adc2_9078_461e_a337_347fb0723b32 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_gully" @@ -9192,7 +11104,7 @@ def my_form_open(dialog, layer, feature): Feature gully catalog - + 0 @@ -9215,7 +11127,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -9245,81 +11157,213 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + @@ -9350,32 +11394,32 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + @@ -9398,7 +11442,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_896f1d54_369f_445d_8297_634294e52f3f __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -9406,7 +11450,7 @@ def my_form_open(dialog, layer, feature): Feature node catalog - + 0 @@ -9429,7 +11473,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -9459,120 +11503,252 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -9613,58 +11789,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -9687,7 +11863,7 @@ def my_form_open(dialog, layer, feature): "descript" - + v_edit_cat_hydrology_2af1987c_7b5f_4e89_b06a_6ae09607a557 __DATASOURCE__ key='hydrology_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_hydrology" @@ -9695,7 +11871,7 @@ def my_form_open(dialog, layer, feature): Hydro scenario catalog - + 0 @@ -9718,7 +11894,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -9748,71 +11924,203 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -9839,37 +12147,37 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -9892,7 +12200,7 @@ def my_form_open(dialog, layer, feature): "name" - + __XMIN__ __YMIN__ @@ -9912,7 +12220,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9944,7 +12252,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9957,7 +12265,7 @@ def my_form_open(dialog, layer, feature): - + @@ -9982,129 +12290,223 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - @@ -10115,89 +12517,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -10205,584 +12580,592 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -10855,228 +13238,231 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -11108,152 +13494,152 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11261,7 +13647,7 @@ def my_form_open(dialog, layer, feature): "connec_id" - + v_edit_dimensions_f966f7af_448b_41d3_9ac5_c8adf0f785ea __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -11269,7 +13655,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11292,7 +13678,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11322,1341 +13708,1035 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -12667,750 +14747,684 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -13419,229 +15433,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -13649,175 +15636,175 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -13862,63 +15849,63 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -13950,39 +15937,39 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -13990,7 +15977,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -14010,7 +15997,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14033,7 +16020,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14063,52 +16050,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -14119,97 +16227,97 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -14246,51 +16354,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -14313,7 +16421,7 @@ def my_form_open(dialog, layer, feature): "name" - + v_edit_element_e5ea3ac0_d64b_4db9_ba41_01b6ba993917 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -14321,7 +16429,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14353,7 +16461,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14366,7 +16474,7 @@ def my_form_open(dialog, layer, feature): - + @@ -14391,68 +16499,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -14463,89 +16684,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -14553,233 +16747,233 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14854,108 +17048,108 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -14987,68 +17181,68 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -15056,7 +17250,7 @@ def my_form_open(dialog, layer, feature): element_id - + __XMIN__ __YMIN__ @@ -15076,7 +17270,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15099,7 +17293,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15129,52 +17323,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -15189,58 +17504,58 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -15267,28 +17582,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -15311,7 +17626,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -15331,7 +17646,7 @@ def my_form_open(dialog, layer, feature): Gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15363,7 +17678,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15376,7 +17691,7 @@ def my_form_open(dialog, layer, feature): - + @@ -15401,68 +17716,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -15473,89 +17901,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -15563,576 +17964,583 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16303,249 +18712,252 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -16577,150 +18989,150 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16728,7 +19140,7 @@ def my_form_open(dialog, layer, feature): "gully_id" - + __XMIN__ __YMIN__ @@ -16748,7 +19160,7 @@ def my_form_open(dialog, layer, feature): Inp Conduit - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16771,7 +19183,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16801,181 +19213,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -16992,261 +19476,261 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17331,86 +19815,86 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -17433,7 +19917,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_curve_d08fa407_b3bb_4cb7_a5ef_91aa4cda9e06 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_curve" @@ -17441,7 +19925,7 @@ def my_form_open(dialog, layer, feature): Curve catalog - + 0 @@ -17464,7 +19948,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -17494,53 +19978,185 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - - - - - + + + + + @@ -17563,24 +20179,24 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + @@ -17603,7 +20219,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_divider_92f7afe6_ea02_4f48_a97a_9923bf982e9e __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_divider" (the_geom) @@ -17611,7 +20227,7 @@ def my_form_open(dialog, layer, feature): Inp Divider - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17634,7 +20250,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17664,68 +20280,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -17740,177 +20469,177 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -17971,62 +20700,62 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -18049,7 +20778,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_flwreg_orifice_50bc7e11_184c_4e32_b794_ae09ea6ba93c __DATASOURCE__ key='nodarc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_flwreg_orifice" (the_geom) @@ -18057,7 +20786,7 @@ def my_form_open(dialog, layer, feature): Flowreg Orifice - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18089,7 +20818,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18102,7 +20831,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18127,84 +20856,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -18305,128 +21112,128 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -18471,64 +21278,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -18560,65 +21367,65 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + "nodarc_id" - + v_edit_inp_flwreg_outlet_fd47ee7d_1e55_405d_8ed1_b4d743507524 __DATASOURCE__ key='nodarc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_flwreg_outlet" (the_geom) @@ -18626,7 +21433,7 @@ def my_form_open(dialog, layer, feature): Flowreg Outlet - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18658,7 +21465,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18671,7 +21478,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18696,84 +21503,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -18874,93 +21759,93 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -18995,49 +21880,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - @@ -19069,50 +21954,50 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + "nodarc_id" - + __XMIN__ __YMIN__ @@ -19132,7 +22017,7 @@ def my_form_open(dialog, layer, feature): Flowreg Pump - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19164,7 +22049,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19177,7 +22062,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19202,84 +22087,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -19380,79 +22343,79 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + @@ -19483,43 +22446,43 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + - @@ -19551,44 +22514,44 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + "nodarc_id" - + __XMIN__ __YMIN__ @@ -19608,7 +22571,7 @@ def my_form_open(dialog, layer, feature): Flowreg Weir - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19640,7 +22603,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19653,7 +22616,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19678,84 +22641,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -19856,149 +22897,149 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -20049,73 +23090,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + - @@ -20147,74 +23188,74 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + "road_width" - + __XMIN__ __YMIN__ @@ -20234,7 +23275,7 @@ def my_form_open(dialog, layer, feature): Inp Gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20266,7 +23307,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20279,7 +23320,7 @@ def my_form_open(dialog, layer, feature): - + @@ -20304,68 +23345,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -20376,89 +23530,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -20466,261 +23593,268 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - - + + - - + + - - + + - + - - + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20774,7 +23909,6 @@ def my_form_open(dialog, layer, feature): - @@ -20784,6 +23918,8 @@ def my_form_open(dialog, layer, feature): + + @@ -20803,121 +23939,123 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -20949,122 +24087,122 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "gully_id" - + __XMIN__ __YMIN__ @@ -21084,7 +24222,7 @@ def my_form_open(dialog, layer, feature): Inp Junction - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21116,7 +24254,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21129,7 +24267,7 @@ def my_form_open(dialog, layer, feature): - + @@ -21154,68 +24292,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -21226,89 +24477,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -21316,149 +24540,149 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -21509,73 +24733,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + - @@ -21607,74 +24831,86 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + "node_id" - + + + __XMIN__ + __YMIN__ + __XMAX__ + __YMAX__ + + + __XMIN__ + __YMIN__ + __XMAX__ + __YMAX__ + v_edit_inp_netgully_c61804d5_a90e_4213_94db_89d7a6fd82d1 __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_netgully" (the_geom) @@ -21682,7 +24918,7 @@ def my_form_open(dialog, layer, feature): Inp Netgully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21714,7 +24950,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21727,7 +24963,7 @@ def my_form_open(dialog, layer, feature): - + @@ -21752,68 +24988,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -21824,89 +25173,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -21914,317 +25236,317 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -22323,142 +25645,142 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -22490,137 +25812,137 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + v_edit_inp_orifice_32a89246_485f_4343_83a9_a00476f5c69a __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_orifice" (the_geom) @@ -22628,7 +25950,7 @@ def my_form_open(dialog, layer, feature): Inp Orifice - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22651,7 +25973,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22681,181 +26003,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -22872,245 +26266,245 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -23191,82 +26585,82 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -23289,7 +26683,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -23309,7 +26703,7 @@ def my_form_open(dialog, layer, feature): Inp Outfall - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23332,7 +26726,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23362,68 +26756,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -23438,149 +26945,149 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -23633,54 +27140,54 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + @@ -23703,7 +27210,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "node_id", '<NULL>' ) - + v_edit_inp_outlet_d832fb0c_f8a4_4d54_ba80_395c65922e09 __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_outlet" (the_geom) @@ -23711,7 +27218,7 @@ def my_form_open(dialog, layer, feature): Inp Outlet - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23734,7 +27241,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23764,181 +27271,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -23955,210 +27534,210 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24229,72 +27808,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -24317,7 +27896,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_pattern_2936ccc6_4c26_44f8_b547_54809e880988 __DATASOURCE__ key='pattern_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_pattern" @@ -24325,7 +27904,7 @@ def my_form_open(dialog, layer, feature): Pattern catalog - + 0 @@ -24348,7 +27927,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -24378,60 +27957,192 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - - - - - - + + + + + + @@ -24456,26 +28167,26 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -24498,7 +28209,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_pump_504d9dfe_c320_4f0a_b2f8_982c4a57b7d4 __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_pump" (the_geom) @@ -24506,7 +28217,7 @@ def my_form_open(dialog, layer, feature): Inp Pump - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -24529,7 +28240,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -24559,181 +28270,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -24750,198 +28533,198 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -25008,68 +28791,68 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -25092,7 +28875,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -25112,7 +28895,7 @@ def my_form_open(dialog, layer, feature): Inp Storage - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25135,7 +28918,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25165,68 +28948,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -25241,198 +29137,198 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -25499,68 +29395,68 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -25583,7 +29479,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -25603,7 +29499,7 @@ def my_form_open(dialog, layer, feature): Inp Subcatchment - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25626,7 +29522,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25656,52 +29552,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -25712,227 +29729,227 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -26005,106 +30022,106 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -26127,7 +30144,7 @@ def my_form_open(dialog, layer, feature): "descript" - + v_edit_inp_timeseries_b0be46e5_b633_45f4_8656_1ba6beff77c7 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_timeseries" @@ -26135,7 +30152,7 @@ def my_form_open(dialog, layer, feature): Timeseries catalog - + 0 @@ -26158,7 +30175,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -26188,74 +30205,213 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + + + + + + + - - - - - - - - + + + + + + + + + @@ -26282,32 +30439,35 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + + - + - + @@ -26330,7 +30490,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -26350,7 +30510,7 @@ def my_form_open(dialog, layer, feature): Inp Virtual - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26373,7 +30533,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26403,181 +30563,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -26594,86 +30826,86 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -26708,36 +30940,36 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + @@ -26760,7 +30992,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_weir_c2506ec1_5ece_4c77_b2e6_f74f92176abb __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_weir" (the_geom) @@ -26768,7 +31000,7 @@ def my_form_open(dialog, layer, feature): Inp Weir - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26791,7 +31023,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26821,181 +31053,253 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -27012,268 +31316,268 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -27360,88 +31664,88 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -27464,7 +31768,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -27478,13 +31782,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_ddcae956_abd6_4aab_b1b6_27b885636914 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27507,7 +31811,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27537,157 +31841,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -27700,89 +32087,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -27790,136 +32150,129 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - + + - - + + - - + + - - + + - + - + - - + + - - + + - + - - + + - + - + - - - - - - - - + + @@ -27927,105 +32280,101 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - + + - - - - - - + + - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -28057,42 +32406,42 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -28100,7 +32449,7 @@ def my_form_open(dialog, layer, feature): "link_id" - + __XMIN__ __YMIN__ @@ -28120,7 +32469,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28152,7 +32501,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28165,7 +32514,7 @@ def my_form_open(dialog, layer, feature): - + @@ -28190,1024 +32539,890 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - @@ -29216,89 +33431,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -29306,576 +33494,600 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -29947,225 +34159,234 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -30197,146 +34418,146 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30344,7 +34565,7 @@ def my_form_open(dialog, layer, feature): "node_id" - + __XMIN__ __YMIN__ @@ -30364,7 +34585,7 @@ def my_form_open(dialog, layer, feature): Plan psector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30396,7 +34617,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30409,7 +34630,7 @@ def my_form_open(dialog, layer, feature): - + @@ -30434,52 +34655,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -30490,249 +34832,192 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -30740,257 +35025,257 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31053,85 +35338,85 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -31163,46 +35448,46 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -31210,7 +35495,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -31230,7 +35515,7 @@ def my_form_open(dialog, layer, feature): Inp Raingage - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31253,7 +35538,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31283,117 +35568,211 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + __XMIN__ __YMIN__ @@ -31583,7 +35962,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31606,7 +35985,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31636,52 +36015,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -31696,58 +36196,58 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -31774,28 +36274,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -31818,7 +36318,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -31838,7 +36338,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31870,7 +36370,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31883,7 +36383,7 @@ def my_form_open(dialog, layer, feature): - + @@ -31908,68 +36408,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -31980,243 +36593,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -32224,112 +36780,112 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -32342,40 +36898,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -32407,24 +36963,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -32432,7 +36988,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -32452,7 +37008,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32484,7 +37040,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32497,7 +37053,7 @@ def my_form_open(dialog, layer, feature): - + @@ -32522,52 +37078,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -32578,89 +37255,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -32668,168 +37318,168 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -32846,52 +37496,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -32923,32 +37573,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -32956,7 +37606,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -32976,7 +37626,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33008,7 +37658,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33021,7 +37671,7 @@ def my_form_open(dialog, layer, feature): - + @@ -33046,84 +37696,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -33395,110 +38093,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -33511,40 +38209,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -33576,41 +38274,41 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -33630,7 +38328,7 @@ def my_form_open(dialog, layer, feature): Current psector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33653,7 +38351,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33683,52 +38381,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -33739,250 +38558,193 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -33990,268 +38752,268 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -34277,83 +39039,83 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -34385,58 +39147,58 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -34444,7 +39206,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -34457,14 +39219,14 @@ def my_form_open(dialog, layer, feature): __XMAX__ __YMAX__ - v_plan_psector_arc_e6a59222_3da7_4c3e_a715_d992bf82c7e1 - __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_arc" (the_geom) + v_plan_psector_arc_dc4a3df0_fa35_428b_9327_a36255ef653b + __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_arc" (the_geom) Plan psector arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34487,7 +39249,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34517,87 +39279,192 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + __XMIN__ __YMIN__ @@ -34801,13 +39668,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_plan_psector_connec_31d307a0_6197_4f43_9325_fb0ed72a96c7 - __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_connec" (the_geom) + __DATASOURCE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_connec" (the_geom) Plan psector connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34830,7 +39697,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34860,120 +39727,214 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -35072,93 +40006,93 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -35193,48 +40127,48 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - @@ -35266,28 +40200,28 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + @@ -35295,7 +40229,7 @@ def my_form_open(dialog, layer, feature): "connec_id" - + __XMIN__ __YMIN__ @@ -35309,13 +40243,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_plan_psector_gully_08c47808_1f01_403d_89ea_bbaf50b220b0 - __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_gully" (the_geom) + __DATASOURCE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_gully" (the_geom) Plan psector gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35338,7 +40272,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35368,71 +40302,184 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -35531,93 +40551,93 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -35652,48 +40672,48 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - @@ -35725,28 +40745,28 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + @@ -35754,7 +40774,7 @@ def my_form_open(dialog, layer, feature): "gully_id" - + __XMIN__ __YMIN__ @@ -35768,13 +40788,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_plan_psector_link_43abd22e_f67e_4668_a5d6_2d42d5b24e61 - __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_link" (the_geom) + __DATASOURCE__ key='rid' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_link" (the_geom) Plan psector link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35797,7 +40817,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35827,160 +40847,243 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -35995,65 +41098,65 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -36082,30 +41185,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -36128,7 +41231,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -36141,14 +41244,14 @@ def my_form_open(dialog, layer, feature): __XMAX__ __YMAX__ - v_plan_psector_node_2bc08b43_8656_4945_806f_d9098b70c8a2 - __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_node" (the_geom) + v_plan_psector_node_27b614c1_4c89_4dcf_8505_73bee9ff4b28 + __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_node" (the_geom) Plan psector node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36171,7 +41274,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36201,71 +41304,184 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - - + v_rpt_arcflow_sum_fe94697c_63f1_4c02_bc5e_4ba0545170ba - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcflow_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcflow_sum" (the_geom) Arc flow - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36475,7 +41691,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36505,410 +41721,404 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + + @@ -36919,243 +42129,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -37163,261 +42316,261 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -37443,79 +42596,79 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -37547,50 +42700,50 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -37598,15 +42751,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_arcpolload_sum_6619cd69_ff7f_4b72_89f9_c7c7477f5903 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcpolload_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arcpolload_sum" (the_geom) Arc pollutant load - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37629,7 +42782,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37659,84 +42812,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -37837,101 +43068,101 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -37943,37 +43174,37 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -38005,22 +43236,22 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - - + + + + + + + @@ -38028,15 +43259,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_condsurcharge_sum_e28a01ad_4d2b_4d06_8d45_125bab49ea0d - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_condsurcharge_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_condsurcharge_sum" (the_geom) Conduit surcharge - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38059,7 +43290,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38089,84 +43320,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -38267,145 +43576,145 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + @@ -38421,49 +43730,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - @@ -38495,30 +43804,30 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -38526,15 +43835,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_flowclass_sum_74485e21_3847_464e_9b2b_5e10a61ceebc - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_flowclass_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_flowclass_sum" (the_geom) Flow class - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38557,7 +43866,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38587,84 +43896,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -38765,167 +44152,167 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -38943,55 +44330,55 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - @@ -39023,34 +44410,34 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -39058,15 +44445,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_lidperfomance_sum_52b548dc_286d_4302_b8ba_4abc723c1cd2 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_lidperfomance_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_lidperfomance_sum" (the_geom) LID performance - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39089,7 +44476,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39119,52 +44506,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -39175,89 +44683,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -39265,173 +44746,173 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -39449,55 +44930,55 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - @@ -39529,34 +45010,34 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -39564,15 +45045,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_nodedepth_sum_f84277ab_00b9_4201_86ba_4f07e698d8e4 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodedepth_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodedepth_sum" (the_geom) Node depth - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39595,7 +45076,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39625,68 +45106,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -39697,89 +45291,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -39787,156 +45354,156 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -39953,52 +45520,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -40030,32 +45597,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -40063,15 +45630,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_nodeflooding_sum_69028733_3c38_420a_8c26_d10e8f2a4a3e - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeflooding_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeflooding_sum" (the_geom) Node flooding - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40094,7 +45661,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40124,817 +45691,660 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - + + @@ -40945,89 +46355,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -41035,153 +46418,153 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -41198,52 +46581,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -41275,32 +46658,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -41308,15 +46691,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_nodeinflow_sum_1d195e0b_680d_435f_87e6_1e4a23a90ccc - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeinflow_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodeinflow_sum" (the_geom) Node inflow - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41339,7 +46722,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41369,68 +46752,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -41441,89 +46937,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -41531,186 +47000,186 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -41729,58 +47198,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -41812,36 +47281,36 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -41849,15 +47318,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_nodesurcharge_sum_c2b99680_ff40_4228_81d0_0d5035e5a6d0 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodesurcharge_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_nodesurcharge_sum" (the_geom) Node surcharge - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41880,7 +47349,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41910,68 +47379,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -41982,89 +47564,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -42072,138 +47627,138 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + @@ -42218,46 +47773,46 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -42289,28 +47844,28 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + @@ -42318,15 +47873,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_outfallflow_sum_26c1efdc_dde6_4fb1_9dd9_68df27a4f6eb - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallflow_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallflow_sum" (the_geom) Outfall flow - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42349,7 +47904,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42379,68 +47934,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -42451,89 +48119,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -42541,134 +48182,134 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + @@ -42683,46 +48324,46 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -42754,28 +48395,28 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + @@ -42783,15 +48424,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_outfallload_sum_94b712f3_9775_4c14_9732_cb1b3f5507df - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallload_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_outfallload_sum" (the_geom) Outfall load - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42814,7 +48455,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -42844,68 +48485,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -42916,89 +48670,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -43006,112 +48733,112 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -43124,40 +48851,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -43189,24 +48916,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -43214,15 +48941,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_pumping_sum_3479daea_2671_4c8a_8119_e6046cdb3cd2 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_pumping_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_pumping_sum" (the_geom) Pumping summary - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -43245,7 +48972,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -43275,84 +49002,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -43453,189 +49258,189 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -43655,61 +49460,61 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - + - @@ -43741,38 +49546,38 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -43780,15 +49585,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_rpt_storagevol_sum_28e9ebe5_9723_4378_bb06_8d6fc1cc2c4c - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_storagevol_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_storagevol_sum" (the_geom) Storage volume - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -43811,7 +49616,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -43841,68 +49646,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -43913,89 +49831,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -44003,178 +49894,178 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -44193,58 +50084,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -44276,36 +50167,36 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -44313,15 +50204,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_subcatchrunoff_sum_e1348135_a2a0_407b_95a9_dfe57f782a63 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchrunoff_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchrunoff_sum" (the_geom) Subcatchment runoff - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -44344,7 +50235,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -44374,293 +50265,356 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - + + + + + + - - - + + + - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - - + - - - + - - - - - - - + + @@ -44671,89 +50625,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -44761,217 +50688,217 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -44993,67 +50920,67 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - @@ -45085,42 +51012,42 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -45128,15 +51055,15 @@ def my_form_open(dialog, layer, feature): id - + v_rpt_subcatchwasoff_sum_30c8fcc2_d459_46b6_82bc_71a31639446d - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchwasoff_sum" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_subcatchwasoff_sum" (the_geom) Subcatchment washoff - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -45159,7 +51086,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -45189,52 +51116,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -45245,89 +51293,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -45335,96 +51356,96 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - - - - - - + + + + + + @@ -45435,34 +51456,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - + - + - @@ -45494,20 +51515,20 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - + + + + + + - - - - - - + + + + + + @@ -45515,7 +51536,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + ve_pol_connec_89eb130b_0cb0_405a_a2b2_9133116f7c8e __DATASOURCE__ key='pol_id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."ve_pol_connec" (the_geom) @@ -45523,7 +51544,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -45555,7 +51576,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -45568,7 +51589,7 @@ def my_form_open(dialog, layer, feature): - + @@ -45593,52 +51614,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -45649,89 +51791,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -45739,57 +51854,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -45812,29 +51927,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -45866,14 +51981,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -45881,7 +51996,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -45901,7 +52016,7 @@ def my_form_open(dialog, layer, feature): Gully polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -45933,7 +52048,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -45946,7 +52061,7 @@ def my_form_open(dialog, layer, feature): - + @@ -45971,52 +52086,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -46027,89 +52263,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -46117,57 +52326,64 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + + + + + + + - + - + - + - - - - - + + + + + + @@ -46188,30 +52405,33 @@ def my_form_open(dialog, layer, feature): + - - - - - + + + + + + - - - - - + + + + + + - + - + - @@ -46243,12 +52463,12 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - + + - - + + @@ -46256,7 +52476,7 @@ def my_form_open(dialog, layer, feature): pol_id - + __XMIN__ __YMIN__ @@ -46276,7 +52496,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -46308,7 +52528,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -46321,7 +52541,7 @@ def my_form_open(dialog, layer, feature): - + @@ -46346,184 +52566,272 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - + + + + + + - - - + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + - + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - @@ -46532,90 +52840,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -46623,57 +52904,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -46696,29 +52977,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -46750,14 +53031,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -46765,7 +53046,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -46785,7 +53066,7 @@ def my_form_open(dialog, layer, feature): Gully2Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -46817,7 +53098,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -46830,7 +53111,7 @@ def my_form_open(dialog, layer, feature): - + @@ -46855,84 +53136,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -47033,74 +53392,63 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - - - - - - + + - - - - + + - - - + + - + - + - @@ -47132,19 +53480,19 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + - - - + + + @@ -47184,8 +53532,6 @@ def my_form_open(dialog, layer, feature): - - @@ -47215,16 +53561,11 @@ def my_form_open(dialog, layer, feature): + + - - - - - - 1 - true - + 2 @@ -47350,9 +53691,9 @@ def my_form_open(dialog, layer, feature): @@ -47379,105 +53720,83 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - + + + @@ -47501,646 +53820,932 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -48172,62 +54777,62 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -48243,47 +54848,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -48299,45 +54904,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -48353,109 +54958,109 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -48487,97 +55092,97 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -48593,52 +55198,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -48654,44 +55259,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -48707,44 +55312,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -48760,114 +55365,114 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -48899,58 +55504,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -48966,52 +55571,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -49027,43 +55632,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -49079,80 +55684,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -49168,49 +55773,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -49226,59 +55831,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -49310,45 +55915,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -49357,145 +55962,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49505,69 +56110,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -49599,62 +56204,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -49670,446 +56275,446 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -50118,290 +56723,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -50411,91 +57016,91 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -50527,69 +57132,69 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -50598,145 +57203,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -50746,67 +57351,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -50838,61 +57443,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -50901,145 +57506,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -51049,67 +57654,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -51141,143 +57746,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -51286,145 +57891,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -51434,88 +58039,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -51547,85 +58152,85 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -51634,144 +58239,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -51781,77 +58386,77 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -51883,73 +58488,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE( "id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -51958,144 +58563,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -52105,73 +58710,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -52203,224 +58808,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -52428,45 +58976,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -52655,127 +59401,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -52783,15 +59650,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -52799,254 +59666,287 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -53078,64 +59978,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -53151,47 +60051,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -53207,45 +60107,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -53261,113 +60161,113 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -53399,98 +60299,98 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -53506,52 +60406,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -53567,44 +60467,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -53620,44 +60520,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -53673,118 +60573,118 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - .. @@ -53816,59 +60716,59 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -53884,52 +60784,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -53945,43 +60845,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -53997,80 +60897,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -54086,49 +60986,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -54144,59 +61044,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -54228,54 +61128,54 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -54284,145 +61184,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -54432,75 +61332,75 @@ def my_form_open(dialog, layer, feature): short_descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + - .. @@ -54532,45 +61432,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("short_descript", '<NULL>') 2 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -54579,145 +61479,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -54727,69 +61627,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -54821,62 +61721,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -54892,51 +61792,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -54952,259 +61852,259 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("macroexp_id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -55213,167 +62113,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55383,175 +62283,175 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/init_ui/ws_man_pipe.ui @@ -55583,38 +62483,38 @@ def my_form_open(dialog, layer, feature): - - - - - - @@ -55638,92 +62538,92 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 1 - - + + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -55732,145 +62632,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55880,65 +62780,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -55970,41 +62870,41 @@ def my_form_open(dialog, layer, feature): - + 2 - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -56013,145 +62913,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -56161,65 +63061,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -56251,477 +63151,477 @@ def my_form_open(dialog, layer, feature): - + 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -56731,180 +63631,180 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/ws_man_connec.ui @@ -56940,503 +63840,503 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -57445,290 +64345,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -57738,92 +64638,92 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -57855,78 +64755,78 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -57935,167 +64835,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -58105,81 +65005,81 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -58211,138 +65111,138 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -58351,145 +65251,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -58499,122 +65399,122 @@ def my_form_open(dialog, layer, feature): element_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - .. @@ -58643,14 +65543,14 @@ def my_form_open(dialog, layer, feature): - - @@ -58659,103 +65559,103 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "element_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -58764,145 +65664,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -58912,89 +65812,89 @@ def my_form_open(dialog, layer, feature): link_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - + + + + + + + + + + + + + - + - .. @@ -59026,997 +65926,997 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + COALESCE( "link_id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -60025,145 +66925,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -60173,181 +67073,181 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - . @@ -60389,117 +67289,117 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -60508,145 +67408,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -60656,67 +67556,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -60748,61 +67648,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -60811,145 +67711,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -60959,67 +67859,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -61051,143 +67951,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -61196,145 +68096,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -61344,88 +68244,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -61457,72 +68357,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -61531,146 +68431,146 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -61680,73 +68580,73 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + ../test_1230 - - - - - + + + + + - + - ../test_1230 @@ -61778,71 +68678,71 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -61851,144 +68751,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -61998,73 +68898,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -62096,70 +68996,70 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - - + + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -62168,145 +69068,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -62316,78 +69216,78 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - + + + + + + + + - + - .. @@ -62419,220 +69319,163 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) 1 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -62640,21 +69483,21 @@ def my_form_open(dialog, layer, feature): - + - + - + - + @@ -62662,189 +69505,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -62860,14 +69681,14 @@ def my_form_open(dialog, layer, feature): - + @@ -62875,189 +69696,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -63075,17 +69874,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -63098,19 +69898,55 @@ def my_form_open(dialog, layer, feature): - - + + + + + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + diff --git a/resources/templates/qgisproject/en_US/ud_om.qgs b/resources/templates/qgisproject/en_US/ud_om.qgs index c1083c5f7..52c207024 100644 --- a/resources/templates/qgisproject/en_US/ud_om.qgs +++ b/resources/templates/qgisproject/en_US/ud_om.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,212 +21,212 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -258,29 +257,29 @@ v_edit_link_ddcae956_abd6_4aab_b1b6_27b885636914 - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -295,7 +294,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -312,181 +311,181 @@ - - - - - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_75f68545_1c89_4491_af1e_6b2e300b00c6 @@ -528,7 +501,7 @@ - + 0 @@ -551,7 +524,7 @@ - + 0 @@ -571,7 +544,7 @@ - + cat_arc_52f24e12_c228_47c2_b347_69b187f2d984 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_arc" @@ -579,7 +552,7 @@ Arc catalog - + 0 @@ -602,7 +575,7 @@ - + 0 @@ -632,256 +605,388 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -962,82 +1067,82 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -1060,7 +1165,7 @@ - + cat_connec_c478157f_493b_462e_addb_2de2fbf4f4da __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_connec" @@ -1068,7 +1173,7 @@ Connec catalog - + 0 @@ -1091,7 +1196,7 @@ - + 0 @@ -1121,130 +1226,262 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1289,46 +1526,46 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + @@ -1351,7 +1588,7 @@ - + cat_grate_c32f087c_3368_4aa6_966e_1ff0e19c5894 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_grate" @@ -1359,7 +1596,7 @@ Grate catalog - + 0 @@ -1382,7 +1619,7 @@ - + 0 @@ -1412,151 +1649,283 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -1607,52 +1976,52 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + @@ -1675,7 +2044,7 @@ - + cat_mat_arc_bba8ab41_f652_4864_95d3_45c7e39b5175 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_arc" @@ -1683,7 +2052,7 @@ Arc material catalog - + 0 @@ -1706,7 +2075,7 @@ - + 0 @@ -1736,53 +2105,185 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - - - - - + + + + + @@ -1805,24 +2306,24 @@ - - - - - + + + + + - - - - - + + + + + - + - + @@ -1845,7 +2346,7 @@ - + cat_mat_grate_3021f691_143d_43b1_b6a3_c4c83c58791b __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_grate" @@ -1853,7 +2354,7 @@ Grate material catalog - + 0 @@ -1876,7 +2377,7 @@ - + 0 @@ -1906,46 +2407,178 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - - - - + + + + @@ -1966,22 +2599,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -2004,7 +2637,7 @@ - + cat_mat_node_78cd77ff_0c52_4719_a447_c588e95b21a3 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_node" @@ -2012,7 +2645,7 @@ Node material catalog - + 0 @@ -2035,7 +2668,7 @@ - + 0 @@ -2065,46 +2698,178 @@ 1 0 - + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - - - - + + + + @@ -2125,22 +2890,22 @@ - - - - + + + + - - - - + + + + - + - + @@ -2163,7 +2928,7 @@ - + cat_node_612b7617_0e3d_43f8_bffe_e49e3afa89f5 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_node" @@ -2171,7 +2936,7 @@ Node catalog - + 0 @@ -2194,7 +2959,7 @@ - + 0 @@ -2224,144 +2989,276 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -2410,50 +3307,50 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + @@ -2476,7 +3373,7 @@ - + __XMIN__ __YMIN__ @@ -2496,7 +3393,7 @@ Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2528,7 +3425,7 @@ - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2541,7 +3438,7 @@ - + @@ -2566,52 +3463,173 @@ 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -2622,89 +3640,62 @@ 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -2712,78 +3703,78 @@ - + - + - - + - + - + - + - - - - + + + + @@ -2792,28 +3783,28 @@ - - - - + + + + - - - - + + + + - + - + - @@ -2845,16 +3836,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -2862,7 +3853,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "name", '<NULL>' ) - + v_anl_flow_arc_26e14ed9_441a_401b_8aff_3a83432ac182 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_arc" (the_geom) @@ -2870,7 +3861,7 @@ def my_form_open(dialog, layer, feature): Flowtrace arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2893,7 +3884,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2923,238 +3914,289 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -3169,44 +4211,44 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - - - - - + + + + + @@ -3229,24 +4271,24 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + @@ -3269,7 +4311,7 @@ def my_form_open(dialog, layer, feature): - + v_anl_flow_connec_dedac24e_181f_4b33_9f6e_adb7abb78087 __DATASOURCE__ key='connec_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_connec" (the_geom) @@ -3277,7 +4319,7 @@ def my_form_open(dialog, layer, feature): Flowtrace connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3309,7 +4351,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3322,7 +4364,7 @@ def my_form_open(dialog, layer, feature): - + @@ -3347,190 +4389,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -3541,89 +4658,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -3631,37 +4721,37 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - + + + @@ -3680,25 +4770,25 @@ def my_form_open(dialog, layer, feature): - - - + + + - - - + + + - + - + - @@ -3730,14 +4820,14 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - + + + - - - + + + @@ -3745,7 +4835,7 @@ def my_form_open(dialog, layer, feature): connec_id - + v_anl_flow_gully_c19802c2_4f79_4ac9_ada5_6300ec45e42e __DATASOURCE__ key='gully_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_gully" (the_geom) @@ -3753,7 +4843,7 @@ def my_form_open(dialog, layer, feature): Flowtrace gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3776,7 +4866,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3806,190 +4896,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -4004,30 +5169,30 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - - - + + + @@ -4046,20 +5211,20 @@ def my_form_open(dialog, layer, feature): - - - + + + - - - + + + - + - + @@ -4082,7 +5247,7 @@ def my_form_open(dialog, layer, feature): - + v_anl_flow_node_4d575c87_1bb3_4cfb_9cf4_206d690d4270 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_anl_flow_node" (the_geom) @@ -4090,7 +5255,7 @@ def my_form_open(dialog, layer, feature): Flowtrace node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4113,7 +5278,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4143,190 +5308,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -4341,44 +5581,44 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - - - - - + + + + + @@ -4401,24 +5641,24 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + @@ -4441,7 +5681,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -4461,7 +5701,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4493,7 +5733,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4506,7 +5746,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4531,1162 +5771,934 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - + - + - - - - - - - - - - - - - - - - - - - - @@ -5697,243 +6709,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -5941,611 +6896,632 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6726,272 +7705,281 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -7023,176 +8011,176 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7200,7 +8188,7 @@ def my_form_open(dialog, layer, feature): "arc_id" - + v_edit_cat_feature_arc_4cd4d71c_df9e_44bf_8911_d4932f930ad2 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -7208,7 +8196,7 @@ def my_form_open(dialog, layer, feature): Feature arc catalog - + 0 @@ -7231,7 +8219,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7261,74 +8249,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -7357,30 +8477,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -7403,7 +8523,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_507c5448_7822_4bd9_ab7e_24d7b1f11400 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -7411,7 +8531,7 @@ def my_form_open(dialog, layer, feature): Feature connec catalog - + 0 @@ -7434,7 +8554,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7464,74 +8584,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -7560,30 +8812,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -7606,7 +8858,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_gully_8979adc2_9078_461e_a337_347fb0723b32 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_gully" @@ -7614,7 +8866,7 @@ def my_form_open(dialog, layer, feature): Feature gully catalog - + 0 @@ -7637,7 +8889,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7667,81 +8919,213 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + @@ -7772,32 +9156,32 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + @@ -7820,7 +9204,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_896f1d54_369f_445d_8297_634294e52f3f __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -7828,7 +9212,7 @@ def my_form_open(dialog, layer, feature): Feature node catalog - + 0 @@ -7851,7 +9235,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7881,120 +9265,252 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -8035,58 +9551,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -8109,7 +9625,7 @@ def my_form_open(dialog, layer, feature): "descript" - + __XMIN__ __YMIN__ @@ -8129,7 +9645,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -8161,7 +9677,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -8174,7 +9690,7 @@ def my_form_open(dialog, layer, feature): - + @@ -8199,129 +9715,223 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + - @@ -8332,89 +9942,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -8422,584 +10005,592 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -9072,228 +10663,231 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -9325,152 +10919,152 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -9478,7 +11072,7 @@ def my_form_open(dialog, layer, feature): "connec_id" - + v_edit_dimensions_f966f7af_448b_41d3_9ac5_c8adf0f785ea __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -9486,7 +11080,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9509,7 +11103,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9539,1341 +11133,1035 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -10884,750 +12172,684 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -11636,229 +12858,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -11866,175 +13061,175 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -12079,63 +13274,63 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -12167,39 +13362,39 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -12207,7 +13402,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -12227,7 +13422,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12250,7 +13445,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12280,52 +13475,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -12336,97 +13652,97 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -12463,51 +13779,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -12530,7 +13846,7 @@ def my_form_open(dialog, layer, feature): "name" - + v_edit_element_e5ea3ac0_d64b_4db9_ba41_01b6ba993917 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -12538,7 +13854,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12570,7 +13886,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12583,7 +13899,7 @@ def my_form_open(dialog, layer, feature): - + @@ -12608,68 +13924,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -12680,89 +14109,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -12770,233 +14172,233 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -13071,108 +14473,108 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -13204,68 +14606,68 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -13273,7 +14675,7 @@ def my_form_open(dialog, layer, feature): element_id - + __XMIN__ __YMIN__ @@ -13293,7 +14695,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13316,7 +14718,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13346,52 +14748,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -13406,58 +14929,58 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -13484,28 +15007,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -13528,7 +15051,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -13548,7 +15071,7 @@ def my_form_open(dialog, layer, feature): Gully - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13580,7 +15103,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13593,7 +15116,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13618,68 +15141,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -13690,89 +15326,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -13780,576 +15389,583 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14520,249 +16137,252 @@ def my_form_open(dialog, layer, feature): + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -14794,150 +16414,150 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14945,7 +16565,7 @@ def my_form_open(dialog, layer, feature): "gully_id" - + __XMIN__ __YMIN__ @@ -14959,13 +16579,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_ddcae956_abd6_4aab_b1b6_27b885636914 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14988,7 +16608,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15018,157 +16638,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - @@ -15181,89 +16884,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -15271,136 +16947,129 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - + + - - + + - - + + - - + + - + - + - - + + - - + + - + - - + + - + - + - - - - - - - - + + @@ -15408,105 +17077,101 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - + + - - - - - - + + - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -15538,42 +17203,42 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -15581,7 +17246,7 @@ def my_form_open(dialog, layer, feature): "link_id" - + __XMIN__ __YMIN__ @@ -15601,7 +17266,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15633,7 +17298,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15646,7 +17311,7 @@ def my_form_open(dialog, layer, feature): - + @@ -15671,1024 +17336,890 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - + - - - - - - - - - - - - - - - - - - - - - + + - - - @@ -16697,89 +18228,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -16787,576 +18291,600 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17428,225 +18956,234 @@ def my_form_open(dialog, layer, feature): + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -17678,146 +19215,146 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17825,7 +19362,7 @@ def my_form_open(dialog, layer, feature): "node_id" - + __XMIN__ __YMIN__ @@ -17845,7 +19382,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17868,7 +19405,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17898,52 +19435,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -17958,58 +19616,58 @@ def my_form_open(dialog, layer, feature): 0 0 1 - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -18036,28 +19694,28 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + @@ -18080,7 +19738,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -18100,7 +19758,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18132,7 +19790,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18145,7 +19803,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18170,68 +19828,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -18242,243 +20013,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -18486,112 +20200,112 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -18604,40 +20318,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -18669,24 +20383,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -18694,7 +20408,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -18714,7 +20428,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18746,7 +20460,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18759,7 +20473,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18784,52 +20498,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -18840,89 +20675,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -18930,168 +20738,168 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -19108,52 +20916,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -19185,32 +20993,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -19218,7 +21026,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -19238,7 +21046,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19270,7 +21078,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19283,7 +21091,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19308,84 +21116,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -19396,260 +21309,203 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -19657,110 +21513,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -19773,40 +21629,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -19838,41 +21694,41 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + ve_pol_connec_89eb130b_0cb0_405a_a2b2_9133116f7c8e __DATASOURCE__ key='pol_id' srid=__SRID__ type=MultiPolygon checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."ve_pol_connec" (the_geom) @@ -19880,7 +21736,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19912,7 +21768,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19925,7 +21781,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19950,52 +21806,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -20006,89 +21983,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -20096,57 +22046,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -20169,29 +22119,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -20223,14 +22173,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -20238,7 +22188,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -20258,7 +22208,7 @@ def my_form_open(dialog, layer, feature): Gully polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20290,7 +22240,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20303,7 +22253,7 @@ def my_form_open(dialog, layer, feature): - + @@ -20328,52 +22278,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -20384,89 +22455,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -20474,57 +22518,64 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + + + + + + + - + - + - + - - - - - + + + + + + @@ -20545,30 +22597,33 @@ def my_form_open(dialog, layer, feature): + - - - - - + + + + + + - - - - - + + + + + + - + - + - @@ -20600,12 +22655,12 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - + + - - + + @@ -20613,7 +22668,7 @@ def my_form_open(dialog, layer, feature): pol_id - + __XMIN__ __YMIN__ @@ -20633,7 +22688,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20665,7 +22720,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20678,7 +22733,7 @@ def my_form_open(dialog, layer, feature): - + @@ -20703,184 +22758,272 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + @@ -20889,90 +23032,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -20980,57 +23096,57 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -21053,29 +23169,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -21107,14 +23223,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -21147,14 +23263,7 @@ def my_form_open(dialog, layer, feature): - - - - - - 1 - true - + 2 @@ -21280,9 +23389,9 @@ def my_form_open(dialog, layer, feature): @@ -21309,105 +23418,83 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - - + + @@ -21415,15 +23502,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -21431,646 +23518,932 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -22102,62 +24475,62 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -22173,47 +24546,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -22229,45 +24602,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -22283,109 +24656,109 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -22417,97 +24790,97 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -22523,52 +24896,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -22584,44 +24957,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -22637,44 +25010,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -22690,114 +25063,114 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -22829,58 +25202,58 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -22896,52 +25269,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -22957,43 +25330,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -23009,80 +25382,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -23098,49 +25471,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -23156,59 +25529,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -23240,45 +25613,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -23287,145 +25660,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -23435,69 +25808,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -23529,62 +25902,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -23600,446 +25973,446 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -24048,290 +26421,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24341,91 +26714,91 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -24457,69 +26830,69 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -24528,145 +26901,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24676,67 +27049,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -24768,61 +27141,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -24831,145 +27204,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24979,67 +27352,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -25071,143 +27444,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -25216,145 +27589,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -25364,88 +27737,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -25477,85 +27850,85 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -25564,144 +27937,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -25711,77 +28084,77 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -25813,73 +28186,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE( "id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -25888,144 +28261,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -26035,73 +28408,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -26133,224 +28506,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - - - - - - - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -26358,45 +28674,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - - - - - - - - - - - + + @@ -26404,9 +28709,9 @@ def my_form_open(dialog, layer, feature): @@ -26414,170 +28719,379 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -26585,127 +29099,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -26713,15 +29348,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -26729,254 +29364,287 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -27008,64 +29676,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -27081,47 +29749,47 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -27137,45 +29805,45 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -27191,113 +29859,113 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -27329,98 +29997,98 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -27436,52 +30104,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -27497,44 +30165,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -27550,44 +30218,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -27603,118 +30271,118 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - .. @@ -27746,59 +30414,59 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -27814,52 +30482,52 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + .. - - - - - + + + + + - + - .. @@ -27875,43 +30543,43 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + .. - - - - + + + + - + .. @@ -27927,80 +30595,80 @@ def my_form_open(dialog, layer, feature): - - - - + + + + 4 - - + + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - + + + + + + + + + + - + - + - .. @@ -28016,49 +30684,49 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + . - - - + + + - + - . @@ -28074,59 +30742,59 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + .. - - - - - - + + + + + + - + - + - .. @@ -28158,54 +30826,54 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -28214,145 +30882,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -28362,75 +31030,75 @@ def my_form_open(dialog, layer, feature): short_descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + - .. @@ -28462,45 +31130,45 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE("short_descript", '<NULL>') 2 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -28509,145 +31177,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -28657,69 +31325,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -28751,62 +31419,62 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + .. - - - - - - - + + + + + + + - + - .. @@ -28822,51 +31490,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + . - - - - + + + + - + - . @@ -28882,259 +31550,259 @@ def my_form_open(dialog, layer, feature): - - - - + + + + COALESCE("macroexp_id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -29143,167 +31811,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -29313,175 +31981,175 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/init_ui/ws_man_pipe.ui @@ -29513,38 +32181,38 @@ def my_form_open(dialog, layer, feature): - - - - - - @@ -29568,92 +32236,92 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 1 - - + + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -29662,145 +32330,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -29810,65 +32478,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -29900,41 +32568,41 @@ def my_form_open(dialog, layer, feature): - + 2 - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -29943,145 +32611,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30091,65 +32759,65 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - + - + - . @@ -30181,477 +32849,477 @@ def my_form_open(dialog, layer, feature): - + 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30661,180 +33329,180 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/ws_man_connec.ui @@ -30870,503 +33538,503 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -31375,290 +34043,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31668,92 +34336,92 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - ../.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -31785,78 +34453,78 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -31865,167 +34533,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -32035,81 +34703,81 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - + + + + + + + + + + + - + - + - .. @@ -32141,138 +34809,138 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -32281,145 +34949,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -32429,122 +35097,122 @@ def my_form_open(dialog, layer, feature): element_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - .. @@ -32573,14 +35241,14 @@ def my_form_open(dialog, layer, feature): - - @@ -32589,103 +35257,103 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "element_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -32694,145 +35362,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -32842,89 +35510,89 @@ def my_form_open(dialog, layer, feature): link_id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - + + + + + + + + + + + + + - + - .. @@ -32956,997 +35624,997 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - + + + + + + + + + + + + + COALESCE( "link_id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -33955,145 +36623,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -34103,181 +36771,181 @@ def my_form_open(dialog, layer, feature): depth : [% "depth" %] - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - . @@ -34319,117 +36987,117 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "descript", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -34438,145 +37106,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -34586,67 +37254,67 @@ def my_form_open(dialog, layer, feature): pond_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -34678,61 +37346,61 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pond_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -34741,145 +37409,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -34889,67 +37557,67 @@ def my_form_open(dialog, layer, feature): pool_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - + + + + + + - + .. @@ -34981,143 +37649,143 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + COALESCE( "pool_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -35126,145 +37794,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -35274,88 +37942,88 @@ def my_form_open(dialog, layer, feature): sample_id - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + .. @@ -35387,72 +38055,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "sample_id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -35461,146 +38129,146 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -35610,73 +38278,73 @@ def my_form_open(dialog, layer, feature): descript - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + ../test_1230 - - - - - + + + + + - + - ../test_1230 @@ -35708,71 +38376,71 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + COALESCE( "descript", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -35781,144 +38449,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -35928,73 +38596,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -36026,70 +38694,70 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - - + + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -36098,145 +38766,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -36246,78 +38914,78 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - + + + + + + + + - + - .. @@ -36349,220 +39017,163 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) 1 - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - - - - - - - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -36570,21 +39181,21 @@ def my_form_open(dialog, layer, feature): - + - + - + - + @@ -36592,189 +39203,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -36790,14 +39379,14 @@ def my_form_open(dialog, layer, feature): - + @@ -36805,189 +39394,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -37005,17 +39572,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37028,19 +39596,55 @@ def my_form_open(dialog, layer, feature): - - + + + + + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + diff --git a/resources/templates/qgisproject/en_US/ws_epa.qgs b/resources/templates/qgisproject/en_US/ws_epa.qgs index e7b1d1ad1..bd6c2563b 100644 --- a/resources/templates/qgisproject/en_US/ws_epa.qgs +++ b/resources/templates/qgisproject/en_US/ws_epa.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,311 +21,311 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -334,32 +333,32 @@ - + - + - + - + - + - + @@ -409,52 +408,52 @@ Node_minimum_values_d5bea8e4_feb1_40fe_8aad_3ee2a7f2532f - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + meters __XMIN__ @@ -464,7 +463,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -481,324 +480,298 @@ - - - + + + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - - + + - + - + - + - + - - + + - + - + - + - - + + - + - - + + - + - - - + + + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - - + + - + - - + + - + - - - + + + - + - + - + - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_a3df3e48_0a8f_4af8_b12e_b88b251e29e3 @@ -806,7 +779,7 @@ - + 0 @@ -829,7 +802,7 @@ - + 0 @@ -849,7 +822,7 @@ - + __XMIN__ __YMIN__ @@ -863,13 +836,13 @@ __YMAX__ Node_minimum_values_d5bea8e4_feb1_40fe_8aad_3ee2a7f2532f - __DATASOURCE__ sslmode=__SSLMODE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) + __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) Node maximum values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -888,11 +861,20 @@ dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -904,7 +886,15 @@ - + + + + + + + + + postgres @@ -922,388 +912,403 @@ 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -1559,18 +1507,18 @@ - + - @@ -1581,126 +1529,142 @@ - + - + - + - + + + + + + + - + - + - + + + + + + + - - + + - + - + - - + + - + - + - - + + - - + + - + - + + + + + + + + + + + + + - - + + @@ -1708,94 +1672,115 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -1827,56 +1812,95 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + cat_arc20151120192002466 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_arc" @@ -1884,7 +1908,7 @@ def my_form_open(dialog, layer, feature): Arc catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1916,7 +1940,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1929,7 +1953,7 @@ def my_form_open(dialog, layer, feature): - + @@ -1954,18 +1978,150 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1975,255 +2131,255 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -2416,60 +2572,60 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2477,7 +2633,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_connec20160216122620764 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_connec" @@ -2485,7 +2641,7 @@ def my_form_open(dialog, layer, feature): Connec catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2517,7 +2673,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -2530,7 +2686,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2555,253 +2711,385 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - + + - + - + - @@ -2833,42 +3121,42 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -2876,7 +3164,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_arc20160224165702501 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_arc" @@ -2884,7 +3172,7 @@ def my_form_open(dialog, layer, feature): Arc material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2907,7 +3195,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -2937,12 +3225,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2953,83 +3373,83 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - + + - + - + - @@ -3045,10 +3465,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -3057,7 +3477,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_node20160224165702530 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_node" @@ -3065,7 +3485,7 @@ def my_form_open(dialog, layer, feature): Node material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3088,7 +3508,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3118,12 +3538,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3134,83 +3686,83 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - + + - + - + - @@ -3226,10 +3778,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -3238,7 +3790,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_roughness_c053cb42_acf7_41ae_a018_24e99b2c84d9 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_roughness" @@ -3246,7 +3798,7 @@ def my_form_open(dialog, layer, feature): Roughness catalog - + 0 @@ -3269,7 +3821,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3299,12 +3851,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3317,135 +4001,135 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -3461,14 +4145,14 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + @@ -3477,7 +4161,7 @@ def my_form_open(dialog, layer, feature): - + cat_node20151105202206790 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_node" @@ -3485,7 +4169,7 @@ def my_form_open(dialog, layer, feature): Node catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3517,7 +4201,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3530,7 +4214,7 @@ def my_form_open(dialog, layer, feature): - + @@ -3555,18 +4239,150 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3576,357 +4392,357 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -3958,48 +4774,48 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -4007,7 +4823,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + __XMIN__ __YMIN__ @@ -4027,7 +4843,7 @@ def my_form_open(dialog, layer, feature): Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4059,7 +4875,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4072,7 +4888,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4097,145 +4913,239 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + __XMIN__ __YMIN__ @@ -4406,7 +5316,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4438,7 +5348,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4451,7 +5361,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4476,312 +5386,336 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -5034,12 +5911,12 @@ def my_form_open(dialog, layer, feature): - + @@ -5050,1262 +5927,1361 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -6337,271 +7313,271 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "arc_id" - + v_edit_cat_dscenario_f8980445_ef78_4616_8d5e_88de29347aec __DATASOURCE__ key='dscenario_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_dscenario" @@ -6609,7 +7585,7 @@ def my_form_open(dialog, layer, feature): Dscenario catalog - + 0 @@ -6632,7 +7608,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -6662,12 +7638,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6680,56 +7788,56 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -6804,7 +7912,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_arc_e9a8f87d_5db9_4265_9496_b9ee76cffadd __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -6812,7 +7920,7 @@ def my_form_open(dialog, layer, feature): Arc feature catalog - + 0 @@ -6835,7 +7943,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -6865,74 +7973,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -7007,7 +8247,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_79421626_dc83_4ace_a970_9edeceeef98d __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -7015,7 +8255,7 @@ def my_form_open(dialog, layer, feature): Connec feature catalog - + 0 @@ -7038,7 +8278,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7068,12 +8308,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7086,56 +8458,56 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -7210,7 +8582,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_ea70bfb4_8fbc_4012_8ac4_3f3f7b2557ae __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -7218,7 +8590,7 @@ def my_form_open(dialog, layer, feature): Node feature catalog - + 0 @@ -7241,7 +8613,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7271,12 +8643,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7289,98 +8793,98 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + @@ -7479,7 +8983,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -7499,7 +9003,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7531,7 +9035,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7544,7 +9048,7 @@ def my_form_open(dialog, layer, feature): - + @@ -7569,443 +9073,462 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - @@ -8014,89 +9537,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -8104,12 +9600,12 @@ def my_form_open(dialog, layer, feature): - + @@ -8120,1226 +9616,1380 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - @@ -9371,267 +11021,267 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "connec_id" - + v_edit_dimensions20170628134034849 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -9639,7 +11289,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9671,7 +11321,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -9684,7 +11334,7 @@ def my_form_open(dialog, layer, feature): - + @@ -9709,1187 +11359,933 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -10900,986 +12296,898 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -11888,229 +13196,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -12118,18 +13399,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -12140,251 +13421,251 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -12416,40 +13697,40 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -12457,7 +13738,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -12477,7 +13758,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12509,7 +13790,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12522,7 +13803,7 @@ def my_form_open(dialog, layer, feature): - + @@ -12547,150 +13828,244 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -12698,167 +14073,167 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - + - + - @@ -12990,35 +14365,35 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -13026,7 +14401,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -13046,7 +14421,7 @@ def my_form_open(dialog, layer, feature): Dqa - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13078,7 +14453,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13091,7 +14466,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13116,52 +14491,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -13172,94 +14668,67 @@ def my_form_open(dialog, layer, feature): - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -13267,222 +14736,222 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -13514,33 +14983,33 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -13548,7 +15017,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + v_edit_element20170828122555146 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -13556,7 +15025,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13588,7 +15057,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13601,7 +15070,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13626,68 +15095,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -13698,89 +15280,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -13788,12 +15343,12 @@ def my_form_open(dialog, layer, feature): - + @@ -13804,491 +15359,491 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -14320,70 +15875,70 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14398,7 +15953,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "element_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -14418,7 +15973,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14450,7 +16005,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14463,7 +16018,7 @@ def my_form_open(dialog, layer, feature): - + @@ -14488,52 +16043,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -14544,90 +16220,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -14635,152 +16284,152 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -14812,21 +16461,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -14834,7 +16483,7 @@ def my_form_open(dialog, layer, feature): COALESCE("short_descript", '<NULL>') short_descript - + __XMIN__ __YMIN__ @@ -14854,7 +16503,7 @@ def my_form_open(dialog, layer, feature): Inp connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14877,7 +16526,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14907,68 +16556,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -14992,207 +16754,207 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -15334,20 +17096,20 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -15356,7 +17118,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_curve_858af3e6_c3c9_4a73_ba0c_0285e68d4f63 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_curve" @@ -15364,7 +17126,7 @@ def my_form_open(dialog, layer, feature): Curve catalog - + 0 @@ -15387,7 +17149,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -15417,64 +17179,196 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -15536,10 +17430,10 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - + + + + @@ -15548,7 +17442,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -15568,7 +17462,7 @@ def my_form_open(dialog, layer, feature): Inp inlet - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15591,7 +17485,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15621,68 +17515,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -15706,201 +17713,201 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - @@ -16036,23 +18043,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -16061,7 +18068,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -16081,7 +18088,7 @@ def my_form_open(dialog, layer, feature): Inp junction - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16104,7 +18111,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16134,68 +18141,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -16219,229 +18339,240 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -16457,19 +18588,19 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -16478,7 +18609,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_pattern_aa06a7c7_458c_4809_a192_2495d2bf77fd __DATASOURCE__ key='pattern_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_pattern" @@ -16486,7 +18617,7 @@ def my_form_open(dialog, layer, feature): Patterns catalog - + 0 @@ -16509,7 +18640,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -16539,12 +18670,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16557,50 +18820,50 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - @@ -16667,11 +18930,11 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - + + + + + @@ -16680,7 +18943,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -16700,7 +18963,7 @@ def my_form_open(dialog, layer, feature): Inp pipe - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16732,7 +18995,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16745,7 +19008,7 @@ def my_form_open(dialog, layer, feature): - + @@ -16770,90 +19033,195 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -16864,243 +19232,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -17108,12 +19419,12 @@ def my_form_open(dialog, layer, feature): - + @@ -17124,275 +19435,275 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -17424,65 +19735,65 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + "arc_id" - + __XMIN__ __YMIN__ @@ -17502,7 +19813,7 @@ def my_form_open(dialog, layer, feature): Inp pump - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17525,7 +19836,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17555,73 +19866,186 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17640,198 +20064,198 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -17839,110 +20263,110 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - @@ -17958,24 +20382,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -17984,7 +20408,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -18004,7 +20428,7 @@ def my_form_open(dialog, layer, feature): Inp reservoir - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18027,7 +20451,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18057,68 +20481,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -18142,142 +20679,142 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - @@ -18380,18 +20917,18 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + @@ -18400,7 +20937,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -18420,7 +20957,7 @@ def my_form_open(dialog, layer, feature): Inp shortpipe - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18443,7 +20980,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18473,68 +21010,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -18558,151 +21208,151 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -18710,90 +21360,90 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -18809,19 +21459,19 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -18830,7 +21480,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_tank_8676b600_bb6e_4637_bf1b_f920e82136f0 __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_tank" (the_geom) @@ -18838,7 +21488,7 @@ def my_form_open(dialog, layer, feature): Inp tank - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18861,7 +21511,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18891,68 +21541,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -18976,187 +21739,187 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - @@ -19283,23 +22046,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -19308,7 +22071,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -19328,7 +22091,7 @@ def my_form_open(dialog, layer, feature): Inp valve - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19351,7 +22114,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19381,68 +22144,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -19466,214 +22342,214 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - @@ -19811,25 +22687,25 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -19838,7 +22714,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_virtualvalve_4b99c158_7f04_4765_9bff_b93fe2f489c8 __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_virtualvalve" (the_geom) @@ -19846,7 +22722,7 @@ def my_form_open(dialog, layer, feature): Inp virtualvalve - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19869,7 +22745,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19899,328 +22775,424 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - + + + + - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - + @@ -20228,125 +23200,121 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - @@ -20362,27 +23330,27 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -20391,7 +23359,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -20405,13 +23373,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_bf3255de_b7b9_47f1_b2d1_2275d23b83d7 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20434,7 +23402,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20464,157 +23432,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -20627,89 +23678,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -20717,18 +23741,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -20739,289 +23763,347 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - + + - + - + - - + + - - + - - + + - - + + + + + + + - + + + + + + + + + + + + + - - + + - - + + - - + + - + - - + + + + + + + + + + + + + + - + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -21053,70 +24135,70 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + "link_id" - + __XMIN__ __YMIN__ @@ -21136,7 +24218,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21168,7 +24250,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21181,7 +24263,7 @@ def my_form_open(dialog, layer, feature): - + @@ -21206,2401 +24288,1884 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - @@ -23609,90 +26174,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -23700,12 +26238,12 @@ def my_form_open(dialog, layer, feature): - + @@ -23716,1223 +26254,1399 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -24964,260 +27678,260 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + __XMIN__ __YMIN__ @@ -25237,7 +27951,7 @@ def my_form_open(dialog, layer, feature): Presszone - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25269,7 +27983,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25282,7 +27996,7 @@ def my_form_open(dialog, layer, feature): - + @@ -25307,52 +28021,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -25363,89 +28198,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -25453,91 +28261,91 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -25629,21 +28437,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -25651,7 +28459,7 @@ def my_form_open(dialog, layer, feature): "name" - + __XMIN__ __YMIN__ @@ -25671,7 +28479,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25703,7 +28511,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25716,7 +28524,7 @@ def my_form_open(dialog, layer, feature): - + @@ -25741,52 +28549,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -25797,90 +28726,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -25888,110 +28790,110 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -26092,23 +28994,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - + + + + + + + @@ -26116,7 +29018,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -26136,7 +29038,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26168,7 +29070,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26181,7 +29083,7 @@ def my_form_open(dialog, layer, feature): - + @@ -26206,68 +29108,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -26278,243 +29293,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -26522,12 +29480,12 @@ def my_form_open(dialog, layer, feature): - + @@ -26538,140 +29496,140 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -26703,24 +29661,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -26728,7 +29686,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -26748,7 +29706,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26780,7 +29738,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26793,7 +29751,7 @@ def my_form_open(dialog, layer, feature): - + @@ -26818,52 +29776,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -26874,89 +29953,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -26964,142 +30016,142 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - + - + - + - + - + @@ -27107,80 +30159,80 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -27212,32 +30264,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -27245,7 +30297,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -27265,7 +30317,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27297,7 +30349,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27310,7 +30362,7 @@ def my_form_open(dialog, layer, feature): - + @@ -27335,84 +30387,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -27684,12 +30784,12 @@ def my_form_open(dialog, layer, feature): - + @@ -27700,140 +30800,140 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -27865,41 +30965,41 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_arc" (the_geom) @@ -27907,7 +31007,7 @@ def my_form_open(dialog, layer, feature): Mincut result arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27939,7 +31039,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27952,7 +31052,7 @@ def my_form_open(dialog, layer, feature): - + @@ -27977,149 +31077,227 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -28220,12 +31371,12 @@ def my_form_open(dialog, layer, feature): - + @@ -28236,78 +31387,78 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - + - + - @@ -28339,16 +31490,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -28356,7 +31507,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut" (anl_the_geom) @@ -28364,7 +31515,7 @@ def my_form_open(dialog, layer, feature): Mincut init point - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28396,7 +31547,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28409,7 +31560,7 @@ def my_form_open(dialog, layer, feature): - + @@ -28434,68 +31585,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -28506,89 +31770,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -28596,12 +31833,12 @@ def my_form_open(dialog, layer, feature): - + @@ -28612,324 +31849,324 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -29166,78 +32403,78 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -29245,7 +32482,7 @@ def my_form_open(dialog, layer, feature): expl_name - + v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_connec" (the_geom) @@ -29253,7 +32490,7 @@ def my_form_open(dialog, layer, feature): Mincut result connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29285,7 +32522,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29298,7 +32535,7 @@ def my_form_open(dialog, layer, feature): - + @@ -29323,68 +32560,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -29395,89 +32745,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -29485,12 +32808,12 @@ def my_form_open(dialog, layer, feature): - + @@ -29501,92 +32824,92 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -29618,18 +32941,18 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - + + + + + - - - - - + + + + + @@ -29637,7 +32960,7 @@ def my_form_open(dialog, layer, feature): id - + v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_node" (the_geom) @@ -29645,7 +32968,7 @@ def my_form_open(dialog, layer, feature): Mincut result node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29677,7 +33000,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29690,7 +33013,7 @@ def my_form_open(dialog, layer, feature): - + @@ -29715,68 +33038,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -29787,89 +33223,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -29877,12 +33286,12 @@ def my_form_open(dialog, layer, feature): - + @@ -29893,43 +33302,43 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -30007,16 +33416,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -30024,7 +33433,7 @@ def my_form_open(dialog, layer, feature): id - + v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_valve" (the_geom) @@ -30032,7 +33441,7 @@ def my_form_open(dialog, layer, feature): Mincut result valve - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30064,7 +33473,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30077,7 +33486,7 @@ def my_form_open(dialog, layer, feature): - + @@ -30102,190 +33511,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -30386,12 +33843,12 @@ def my_form_open(dialog, layer, feature): - + @@ -30402,138 +33859,138 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -30565,24 +34022,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -30590,7 +34047,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -30604,13 +34061,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_arc_all_1a5f8bfc_1ba7_4596_9364_647fe51d4de7 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_all" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_all" (the_geom) Arc all values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30642,7 +34099,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30655,7 +34112,7 @@ def my_form_open(dialog, layer, feature): - + @@ -30680,482 +34137,764 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + - @@ -31163,81 +34902,54 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -31245,18 +34957,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -31267,181 +34979,193 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + + + + + + + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - + + - + - + - @@ -31473,92 +35197,95 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "arc_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -31572,13 +35299,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_arc_c1c32dd7_4e28_4a25_a25b_c6e425e67bcc - __DATASOURCE__ sslmode=__SSLMODE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc" (the_geom) + __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc" (the_geom) Arc maximum values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31597,11 +35324,20 @@ def my_form_open(dialog, layer, feature): dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31613,7 +35349,15 @@ def my_form_open(dialog, layer, feature): - + + + + + + + + + postgres @@ -31631,563 +35375,818 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -32195,18 +36194,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -32217,279 +36216,287 @@ def my_form_open(dialog, layer, feature): - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -32521,79 +36528,130 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "arc_id", '<NULL>' ) - + v_rpt_arc_hourly_7d8fcfd3_31e9_4b2e_b773_37b089981522 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_hourly" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_hourly" (the_geom) Arc hourly values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32616,7 +36674,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32646,563 +36704,819 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -33210,18 +37524,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -33232,153 +37546,165 @@ def my_form_open(dialog, layer, feature): - + - + - + + + + + + + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - + + - + - + - @@ -33410,92 +37736,92 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "arc_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -33509,13 +37835,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_node_05f30732_cb83_4bca_9d49_6160ac61b3ae - __DATASOURCE__ sslmode=__SSLMODE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) + __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) Node minimum values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33534,11 +37860,20 @@ def my_form_open(dialog, layer, feature): dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33550,7 +37885,15 @@ def my_form_open(dialog, layer, feature): - + + + + + + + + + postgres @@ -33568,388 +37911,403 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -34205,18 +38506,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -34227,220 +38528,253 @@ def my_form_open(dialog, layer, feature): - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -34472,56 +38806,95 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "node_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -34535,13 +38908,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_node_all_99d83ee9_a698_42d2_b04c_c78c50a9bbae - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_all" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_all" (the_geom) Node all values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34564,7 +38937,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34594,388 +38967,403 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -35231,18 +39562,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -35253,181 +39584,192 @@ def my_form_open(dialog, layer, feature): - + - + - + - + + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - + + - + - + - @@ -35459,58 +39801,58 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + "node_id" - + v_rpt_node_hourly_aaae159a_78ad_4885_a43a_20faa971123c - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_hourly" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_hourly" (the_geom) Node hourly values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35529,11 +39871,20 @@ def my_form_open(dialog, layer, feature): dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35545,7 +39896,15 @@ def my_form_open(dialog, layer, feature): - + + + + + + + + + postgres @@ -35563,388 +39922,403 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -36200,18 +40517,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -36222,153 +40539,165 @@ def my_form_open(dialog, layer, feature): - + - + - + + + + + + + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - + + - + - + - @@ -36400,44 +40729,47 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + "node_id" - + __XMIN__ __YMIN__ @@ -36457,7 +40789,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36489,7 +40821,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36502,7 +40834,7 @@ def my_form_open(dialog, layer, feature): - + @@ -36527,98 +40859,208 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - - + - - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -36718,61 +41133,61 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -36849,14 +41264,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -36864,7 +41279,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -36884,7 +41299,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36916,7 +41331,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36929,7 +41344,7 @@ def my_form_open(dialog, layer, feature): - + @@ -36954,141 +41369,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - + + + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - + + + - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - @@ -37097,89 +41611,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -37187,61 +41674,61 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -37318,14 +41805,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -37381,27 +41868,19 @@ def my_form_open(dialog, layer, feature): sdfeaf - SELECT link.link_id, -link.connec_id, -link.vnode_id, -st_length2d(link.the_geom) AS gis_length, -link.custom_length, -connec.connecat_id, -link.the_geom -FROM (sample_epanet.link + SELECT link.link_id, +link.connec_id, +link.vnode_id, +st_length2d(link.the_geom) AS gis_length, +link.custom_length, +connec.connecat_id, +link.the_geom +FROM (sample_epanet.link LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id)::text))); - - 255 - - - - - 1 - true - + true @@ -38061,9 +42540,9 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): @@ -38090,105 +42569,83 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - + + + @@ -38212,656 +42669,942 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - cat_mat_node20160224165702530 - cat_mat_arc20160224165702501 - cat_node20151105202206790 - cat_arc20151120192002466 - cat_connec20160216122620764 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_address20180201103159332 - v_ext_plot20180201103159443 + cat_mat_node20160224165702530 + cat_mat_arc20160224165702501 + cat_node20151105202206790 + cat_arc20151120192002466 + cat_connec20160216122620764 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_address20180201103159332 + v_ext_plot20180201103159443 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -38921,101 +43664,101 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -39068,36 +43811,36 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + .. - - - + + + - + - + - .. @@ -39121,36 +43864,36 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + .. - - - + + + - + - + - .. @@ -39174,106 +43917,106 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -39327,34 +44070,34 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -39363,145 +44106,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -39512,68 +44255,68 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -39613,434 +44356,434 @@ def my_form_open(dialog, layer, feature): 2 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -40049,290 +44792,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -40343,90 +45086,90 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -40477,53 +45220,53 @@ def my_form_open(dialog, layer, feature): 1 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -40532,144 +45275,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -40680,76 +45423,76 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -40793,61 +45536,61 @@ def my_form_open(dialog, layer, feature): 0 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -40856,144 +45599,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -41004,72 +45747,72 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -41119,206 +45862,149 @@ def my_form_open(dialog, layer, feature): - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -41326,45 +46012,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -41553,127 +46437,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -41681,15 +46686,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -41697,315 +46702,291 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -42015,19 +46996,19 @@ def my_form_open(dialog, layer, feature): - + - + - + @@ -42035,189 +47016,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -42233,14 +47192,14 @@ def my_form_open(dialog, layer, feature): - + @@ -42248,189 +47207,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -42448,110 +47385,88 @@ def my_form_open(dialog, layer, feature): - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - + + + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - - - - - - - - - - - - - + + + - + - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - - + + - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - @@ -43473,391 +48472,400 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 - v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a - v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 - v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b - v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 + v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a + v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 + v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b + v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -43867,26 +48875,26 @@ def my_form_open(dialog, layer, feature): - + - + - - - + + + - @@ -43896,17 +48904,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -43919,19 +48928,55 @@ def my_form_open(dialog, layer, feature): + + + - + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + diff --git a/resources/templates/qgisproject/en_US/ws_inventory.qgs b/resources/templates/qgisproject/en_US/ws_inventory.qgs index 796ebcc63..9b680f806 100644 --- a/resources/templates/qgisproject/en_US/ws_inventory.qgs +++ b/resources/templates/qgisproject/en_US/ws_inventory.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,169 +21,169 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -212,25 +211,25 @@ v_edit_link_bf3255de_b7b9_47f1_b2d1_2275d23b83d7 - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -245,7 +244,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -262,142 +261,142 @@ - - - - - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_a3df3e48_0a8f_4af8_b12e_b88b251e29e3 @@ -439,7 +412,7 @@ - + 0 @@ -462,7 +435,7 @@ - + 0 @@ -482,7 +455,7 @@ - + cat_arc20151120192002466 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_arc" @@ -490,7 +463,7 @@ Arc catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -522,7 +495,7 @@ - + 0 @@ -535,7 +508,7 @@ - + @@ -560,276 +533,408 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -896,101 +1001,101 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - @@ -1022,60 +1127,60 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1083,7 +1188,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_connec20160216122620764 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_connec" @@ -1091,7 +1196,7 @@ def my_form_open(dialog, layer, feature): Connec catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1123,7 +1228,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1136,7 +1241,7 @@ def my_form_open(dialog, layer, feature): - + @@ -1161,175 +1266,307 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1348,66 +1585,66 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - + + + - + - @@ -1439,42 +1676,42 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -1482,7 +1719,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_arc20160224165702501 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_arc" @@ -1490,7 +1727,7 @@ def my_form_open(dialog, layer, feature): Arc material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1513,7 +1750,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1543,65 +1780,197 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - - - - + + + + @@ -1610,32 +1979,32 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - - - + + + - + - @@ -1651,10 +2020,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -1663,7 +2032,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_node20160224165702530 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_node" @@ -1671,7 +2040,7 @@ def my_form_open(dialog, layer, feature): Node material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1694,7 +2063,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1724,65 +2093,197 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - - - - + + + + @@ -1791,32 +2292,32 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - - - + + + - + - @@ -1832,10 +2333,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -1844,7 +2345,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_node20151105202206790 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_node" @@ -1852,7 +2353,7 @@ def my_form_open(dialog, layer, feature): Node catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1884,7 +2385,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1897,7 +2398,7 @@ def my_form_open(dialog, layer, feature): - + @@ -1922,279 +2423,411 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - - + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -2219,81 +2852,81 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - + + + - + - @@ -2325,48 +2958,48 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -2374,7 +3007,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + __XMIN__ __YMIN__ @@ -2394,7 +3027,7 @@ def my_form_open(dialog, layer, feature): Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2426,7 +3059,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2439,7 +3072,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2464,145 +3097,239 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -2610,71 +3337,71 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - - - - + + + + @@ -2683,28 +3410,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - + - + - @@ -2736,16 +3463,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -2753,7 +3480,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "name", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -2773,7 +3500,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2805,7 +3532,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2818,7 +3545,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2843,312 +3570,336 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -3157,243 +3908,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -3401,928 +4095,1000 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4409,270 +5175,297 @@ def my_form_open(dialog, layer, feature): + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -4704,271 +5497,271 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "arc_id" - + v_edit_cat_feature_arc_e9a8f87d_5db9_4265_9496_b9ee76cffadd __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -4976,7 +5769,7 @@ def my_form_open(dialog, layer, feature): Arc feature catalog - + 0 @@ -4999,7 +5792,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5029,74 +5822,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -5125,30 +6050,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -5171,7 +6096,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_79421626_dc83_4ace_a970_9edeceeef98d __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -5179,7 +6104,7 @@ def my_form_open(dialog, layer, feature): Connec feature catalog - + 0 @@ -5202,7 +6127,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5232,74 +6157,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -5328,30 +6385,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -5374,7 +6431,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_ea70bfb4_8fbc_4012_8ac4_3f3f7b2557ae __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -5382,7 +6439,7 @@ def my_form_open(dialog, layer, feature): Node feature catalog - + 0 @@ -5405,7 +6462,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5435,116 +6492,248 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -5585,42 +6774,42 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + @@ -5643,7 +6832,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -5663,7 +6852,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5695,7 +6884,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5708,7 +6897,7 @@ def my_form_open(dialog, layer, feature): - + @@ -5733,443 +6922,462 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - @@ -6178,89 +7386,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -6268,900 +7449,1012 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7246,264 +8539,306 @@ def my_form_open(dialog, layer, feature): + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -7535,267 +8870,267 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "connec_id" - + v_edit_dimensions20170628134034849 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -7803,7 +9138,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7835,7 +9170,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7848,7 +9183,7 @@ def my_form_open(dialog, layer, feature): - + @@ -7873,1187 +9208,933 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -9064,986 +10145,898 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -10052,229 +11045,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -10282,195 +11248,195 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -10491,64 +11457,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -10580,40 +11546,40 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -10621,7 +11587,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -10641,7 +11607,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10673,7 +11639,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10686,7 +11652,7 @@ def my_form_open(dialog, layer, feature): - + @@ -10711,52 +11677,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + @@ -10767,94 +11854,67 @@ def my_form_open(dialog, layer, feature): - 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -10862,167 +11922,167 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -11065,64 +12125,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - + + + - + - @@ -11154,35 +12214,35 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -11190,7 +12250,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -11210,7 +12270,7 @@ def my_form_open(dialog, layer, feature): Dqa - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11242,7 +12302,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11255,7 +12315,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11280,52 +12340,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -11336,94 +12517,67 @@ def my_form_open(dialog, layer, feature): - 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -11431,161 +12585,161 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -11602,51 +12756,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -11678,33 +12832,33 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -11712,7 +12866,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + v_edit_element20170828122555146 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -11720,7 +12874,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11752,7 +12906,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11765,7 +12919,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11790,68 +12944,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -11862,89 +13129,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -11952,369 +13192,369 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -12350,109 +13590,109 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -12484,70 +13724,70 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -12562,7 +13802,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "element_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -12582,7 +13822,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12614,7 +13854,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12627,7 +13867,7 @@ def my_form_open(dialog, layer, feature): - + @@ -12652,52 +13892,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -12708,90 +14069,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -12799,110 +14133,110 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -12914,37 +14248,37 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -12976,21 +14310,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -12998,7 +14332,7 @@ def my_form_open(dialog, layer, feature): COALESCE("short_descript", '<NULL>') short_descript - + __XMIN__ __YMIN__ @@ -13012,13 +14346,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_bf3255de_b7b9_47f1_b2d1_2275d23b83d7 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13041,7 +14375,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13071,157 +14405,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - @@ -13234,89 +14651,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -13324,311 +14714,369 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - - + + - + - + - - + + - - + - - + + - - + - - + + - + - - + + - + - - + + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - + + + + + - + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -13660,70 +15108,70 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + "link_id" - + __XMIN__ __YMIN__ @@ -13743,7 +15191,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13775,7 +15223,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13788,7 +15236,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13813,2401 +15261,1884 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - @@ -16216,90 +17147,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -16307,901 +17211,1029 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17285,261 +18317,309 @@ def my_form_open(dialog, layer, feature): + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -17571,260 +18651,260 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + __XMIN__ __YMIN__ @@ -17844,7 +18924,7 @@ def my_form_open(dialog, layer, feature): Presszone - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17876,7 +18956,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17889,7 +18969,7 @@ def my_form_open(dialog, layer, feature): - + @@ -17914,145 +18994,239 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - + + - - - - - - - - 0 - 0 - 1 - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + + + + + + @@ -18060,91 +19234,91 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -18173,38 +19347,38 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -18236,21 +19410,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -18258,7 +19432,7 @@ def my_form_open(dialog, layer, feature): "name" - + __XMIN__ __YMIN__ @@ -18278,7 +19452,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18310,7 +19484,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18323,7 +19497,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18348,52 +19522,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -18404,90 +19699,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -18495,110 +19763,110 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + @@ -18631,43 +19899,43 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -18699,23 +19967,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - + + + + + + + @@ -18723,7 +19991,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -18743,7 +20011,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18775,7 +20043,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18788,7 +20056,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18813,68 +20081,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -18885,243 +20266,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -19129,110 +20453,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -19245,40 +20569,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -19310,24 +20634,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -19335,7 +20659,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -19355,7 +20679,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19387,7 +20711,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19400,7 +20724,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19425,52 +20749,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -19481,89 +20926,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -19571,142 +20989,142 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + @@ -19714,18 +21132,18 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + @@ -19742,52 +21160,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -19819,32 +21237,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -19852,7 +21270,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -19872,7 +21290,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19904,7 +21322,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19917,7 +21335,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19942,84 +21360,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -20030,260 +21553,203 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -20291,110 +21757,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -20407,40 +21873,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -20472,41 +21938,41 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -20526,7 +21992,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20558,7 +22024,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20571,7 +22037,7 @@ def my_form_open(dialog, layer, feature): - + @@ -20596,190 +22062,273 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - + + + + + + - - - - - - - - - - - - - + + - + + + - - - - - - - - - - - - - + + - - - - - - 0 - 0 - 1 - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + + + + + + + + @@ -20787,61 +22336,61 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -20864,29 +22413,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -20918,14 +22467,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -20933,7 +22482,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -20953,7 +22502,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20985,7 +22534,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20998,7 +22547,7 @@ def my_form_open(dialog, layer, feature): - + @@ -21023,141 +22572,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + @@ -21166,89 +22814,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -21256,61 +22877,61 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -21333,29 +22954,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -21387,14 +23008,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -21428,27 +23049,19 @@ def my_form_open(dialog, layer, feature): sdfeaf - SELECT link.link_id, -link.connec_id, -link.vnode_id, -st_length2d(link.the_geom) AS gis_length, -link.custom_length, -connec.connecat_id, -link.the_geom -FROM (sample_epanet.link + SELECT link.link_id, +link.connec_id, +link.vnode_id, +st_length2d(link.the_geom) AS gis_length, +link.custom_length, +connec.connecat_id, +link.the_geom +FROM (sample_epanet.link LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id)::text))); - - 255 - - - - - 1 - true - + true @@ -22108,9 +23721,9 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): @@ -22137,105 +23750,83 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - - + + @@ -22243,15 +23834,15 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + @@ -22259,656 +23850,942 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - cat_mat_node20160224165702530 - cat_mat_arc20160224165702501 - cat_node20151105202206790 - cat_arc20151120192002466 - cat_connec20160216122620764 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_address20180201103159332 - v_ext_plot20180201103159443 + cat_mat_node20160224165702530 + cat_mat_arc20160224165702501 + cat_node20151105202206790 + cat_arc20151120192002466 + cat_connec20160216122620764 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_address20180201103159332 + v_ext_plot20180201103159443 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -22940,129 +24817,129 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -23094,57 +24971,57 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -23160,44 +25037,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -23213,114 +25090,114 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -23352,56 +25229,56 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -23410,145 +25287,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -23558,69 +25435,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -23652,442 +25529,442 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -24096,290 +25973,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24389,91 +26266,91 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -24505,72 +26382,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -24579,144 +26456,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -24726,77 +26603,77 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -24828,73 +26705,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE( "id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -24903,144 +26780,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -25050,73 +26927,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -25148,224 +27025,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -25373,45 +27193,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - - - - - - - - - - - + + @@ -25419,9 +27228,9 @@ def my_form_open(dialog, layer, feature): @@ -25429,170 +27238,379 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -25600,127 +27618,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -25728,15 +27867,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -25744,315 +27883,291 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -26060,21 +28175,21 @@ def my_form_open(dialog, layer, feature): - + - + - + - + @@ -26082,189 +28197,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -26280,14 +28373,14 @@ def my_form_open(dialog, layer, feature): - + @@ -26295,189 +28388,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -26495,110 +28566,88 @@ def my_form_open(dialog, layer, feature): - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - - + + @@ -26606,494 +28655,413 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - - - - + + + + - - - - - - - - - - - - - + + - + - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - - + + - - - - - - - - - - - - - + + @@ -27101,9 +29069,9 @@ def my_form_open(dialog, layer, feature): @@ -27111,408 +29079,573 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - @@ -27520,386 +29653,395 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -27907,28 +30049,28 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - @@ -27938,17 +30080,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27961,19 +30104,55 @@ def my_form_open(dialog, layer, feature): - - + + + + + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + diff --git a/resources/templates/qgisproject/en_US/ws_master.qgs b/resources/templates/qgisproject/en_US/ws_master.qgs index 77d768c5b..35952c44c 100644 --- a/resources/templates/qgisproject/en_US/ws_master.qgs +++ b/resources/templates/qgisproject/en_US/ws_master.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,311 +21,311 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -334,87 +333,87 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -454,8 +453,6 @@ v_edit_inp_pipe_7cac74d1_cc0f_43d5_a009_cdb79d99644a v_edit_inp_connec_3f7dd337_6df0_4fdc_a8e5_b39cf5df82e3 v_plan_current_psector_f06a81e3_8008_44ea_88bf_a0edec25044e - v_plan_psector_arc_528a4229_fce4_4b54_8206_a755ccad86e1 - v_plan_psector_node_748dc6f3_72ea_4fd3_b063_2230d58ef4a1 ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 v_plan_psector_connec_15a9ba6e_663a_42b9_8d65_66377a94eb7c @@ -468,60 +465,62 @@ v_rpt_arc_all_1a5f8bfc_1ba7_4596_9364_647fe51d4de7 v_rpt_arc_hourly_7d8fcfd3_31e9_4b2e_b773_37b089981522 Node_minimum_values_d5bea8e4_feb1_40fe_8aad_3ee2a7f2532f + v_plan_psector_node_2c158ecf_3501_42c0_9eca_ac0a9b49f34e + v_plan_psector_arc_dce5486b_c6a3_4689_a9de_daac853ecaf0 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + meters __XMIN__ @@ -531,7 +530,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -548,370 +547,344 @@ - - - + + + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - - + + - + - + - + - + - - + + - + - + - + - - + + - + - - + + - + - - - + + + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - - + + - + - - + + - + - - - + + + - + - + - + - + - + - - + + - + - - - + + + - + - + - + - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_a3df3e48_0a8f_4af8_b12e_b88b251e29e3 @@ -919,7 +892,7 @@ - + 0 @@ -942,7 +915,7 @@ - + 0 @@ -962,7 +935,7 @@ - + __XMIN__ __YMIN__ @@ -976,13 +949,13 @@ __YMAX__ Node_minimum_values_d5bea8e4_feb1_40fe_8aad_3ee2a7f2532f - __DATASOURCE__ sslmode=__SSLMODE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) + __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) Node maximum values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1001,11 +974,20 @@ dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1017,7 +999,15 @@ - + + + + + + + + + postgres @@ -1035,388 +1025,403 @@ 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -1672,18 +1620,18 @@ - + - @@ -1694,126 +1642,142 @@ - + - + - + - + + + + + + + - + - + - + + + + + + + - - + + - + - + - - + + - + - + - - + + - - + + - + - + + + + + + + + + + + + + - - + + @@ -1821,94 +1785,115 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -1940,56 +1925,95 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + cat_arc20151120192002466 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_arc" @@ -1997,7 +2021,7 @@ def my_form_open(dialog, layer, feature): Arc catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2029,7 +2053,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -2042,7 +2066,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2067,18 +2091,150 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2088,255 +2244,255 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -2529,60 +2685,60 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2590,7 +2746,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_connec20160216122620764 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_connec" @@ -2598,7 +2754,7 @@ def my_form_open(dialog, layer, feature): Connec catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2630,7 +2786,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -2643,7 +2799,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2668,253 +2824,385 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - + + - + - + - @@ -2946,42 +3234,42 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -2989,7 +3277,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_arc20160224165702501 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_arc" @@ -2997,7 +3285,7 @@ def my_form_open(dialog, layer, feature): Arc material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3020,7 +3308,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3050,12 +3338,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3066,83 +3486,83 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - + + - + - + - @@ -3158,10 +3578,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -3170,7 +3590,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_node20160224165702530 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_node" @@ -3178,7 +3598,7 @@ def my_form_open(dialog, layer, feature): Node material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3201,7 +3621,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3231,12 +3651,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3247,83 +3799,83 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - + + - + - + - @@ -3339,10 +3891,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -3351,7 +3903,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_roughness_c053cb42_acf7_41ae_a018_24e99b2c84d9 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."cat_mat_roughness" @@ -3359,7 +3911,7 @@ def my_form_open(dialog, layer, feature): Roughness catalog - + 0 @@ -3382,7 +3934,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3412,12 +3964,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3430,135 +4114,135 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -3574,14 +4258,14 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + @@ -3590,7 +4274,7 @@ def my_form_open(dialog, layer, feature): - + cat_node20151105202206790 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_node" @@ -3598,7 +4282,7 @@ def my_form_open(dialog, layer, feature): Node catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -3630,7 +4314,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -3643,7 +4327,7 @@ def my_form_open(dialog, layer, feature): - + @@ -3668,18 +4352,150 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3689,357 +4505,357 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -4071,48 +4887,48 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -4120,7 +4936,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + __XMIN__ __YMIN__ @@ -4140,7 +4956,7 @@ def my_form_open(dialog, layer, feature): Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4172,7 +4988,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4185,7 +5001,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4210,145 +5026,239 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + plan_price_compost_1fb72596_6bf3_4b52_a200_541f4842a928 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."plan_price_compost" @@ -4507,7 +5417,7 @@ def my_form_open(dialog, layer, feature): Compost prices - + 0 @@ -4530,7 +5440,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -4560,15 +5470,147 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4580,78 +5622,78 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - + - + - @@ -4667,10 +5709,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -4679,7 +5721,7 @@ def my_form_open(dialog, layer, feature): "id" - + plan_price_d25e3b47_1205_4ddb_8cd2_1a19e6a19d3b __DATASOURCE__ key='id' checkPrimaryKeyUnicity='0' table="SCHEMA_NAME"."plan_price" @@ -4687,7 +5729,7 @@ def my_form_open(dialog, layer, feature): Prices - + 0 @@ -4710,7 +5752,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -4740,15 +5782,147 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4760,106 +5934,106 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - @@ -4875,12 +6049,12 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - + + + + + + @@ -4889,7 +6063,7 @@ def my_form_open(dialog, layer, feature): "descript" - + __XMIN__ __YMIN__ @@ -4909,7 +6083,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4941,7 +6115,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -4954,7 +6128,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4979,312 +6153,336 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -5537,12 +6678,12 @@ def my_form_open(dialog, layer, feature): - + @@ -5553,1275 +6694,1374 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "arc_id" - + v_edit_cat_dscenario_f8980445_ef78_4616_8d5e_88de29347aec __DATASOURCE__ key='dscenario_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_dscenario" @@ -7112,7 +8352,7 @@ def my_form_open(dialog, layer, feature): Dscenario catalog - + 0 @@ -7135,7 +8375,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7165,12 +8405,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7183,56 +8555,56 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -7307,7 +8679,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_arc_e9a8f87d_5db9_4265_9496_b9ee76cffadd __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -7315,7 +8687,7 @@ def my_form_open(dialog, layer, feature): Arc feature catalog - + 0 @@ -7338,7 +8710,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7368,12 +8740,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7386,56 +8890,56 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -7510,7 +9014,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_79421626_dc83_4ace_a970_9edeceeef98d __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -7518,7 +9022,7 @@ def my_form_open(dialog, layer, feature): Connec feature catalog - + 0 @@ -7541,7 +9045,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7571,12 +9075,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7589,56 +9225,56 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -7713,7 +9349,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_ea70bfb4_8fbc_4012_8ac4_3f3f7b2557ae __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -7721,7 +9357,7 @@ def my_form_open(dialog, layer, feature): Node feature catalog - + 0 @@ -7744,7 +9380,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -7774,12 +9410,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7792,98 +9560,98 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + @@ -7982,7 +9750,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -8002,7 +9770,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -8034,7 +9802,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -8047,7 +9815,7 @@ def my_form_open(dialog, layer, feature): - + @@ -8072,443 +9840,462 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - @@ -8517,89 +10304,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -8607,12 +10367,12 @@ def my_form_open(dialog, layer, feature): - + @@ -8623,1226 +10383,1380 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -9874,267 +11788,267 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "connec_id" - + v_edit_dimensions20170628134034849 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -10142,7 +12056,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10174,7 +12088,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10187,7 +12101,7 @@ def my_form_open(dialog, layer, feature): - + @@ -10212,1187 +12126,933 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -11403,986 +13063,898 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -12391,229 +13963,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -12621,18 +14166,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -12643,251 +14188,251 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -12919,40 +14464,40 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -12960,7 +14505,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -12980,7 +14525,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13012,7 +14557,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13025,7 +14570,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13050,52 +14595,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -13106,94 +14772,67 @@ def my_form_open(dialog, layer, feature): - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -13201,167 +14840,167 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - + - + - @@ -13493,35 +15132,35 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -13529,7 +15168,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -13549,7 +15188,7 @@ def my_form_open(dialog, layer, feature): Dqa - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13581,7 +15220,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13594,7 +15233,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13619,52 +15258,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -13675,94 +15435,67 @@ def my_form_open(dialog, layer, feature): - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -13770,222 +15503,222 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -14017,33 +15750,33 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -14051,7 +15784,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + v_edit_element20170828122555146 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -14059,7 +15792,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14091,7 +15824,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14104,7 +15837,7 @@ def my_form_open(dialog, layer, feature): - + @@ -14129,68 +15862,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -14201,89 +16047,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -14307,491 +16126,491 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -14823,70 +16642,70 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14901,7 +16720,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "element_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -14921,7 +16740,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14953,7 +16772,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -14966,7 +16785,7 @@ def my_form_open(dialog, layer, feature): - + @@ -14991,52 +16810,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -15047,90 +16987,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -15138,152 +17051,152 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -15315,21 +17228,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -15337,7 +17250,7 @@ def my_form_open(dialog, layer, feature): COALESCE("short_descript", '<NULL>') short_descript - + __XMIN__ __YMIN__ @@ -15357,7 +17270,7 @@ def my_form_open(dialog, layer, feature): Inp connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15380,7 +17293,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -15410,68 +17323,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -15495,207 +17521,207 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -15837,20 +17863,20 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -15859,7 +17885,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_curve_858af3e6_c3c9_4a73_ba0c_0285e68d4f63 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_curve" @@ -15867,7 +17893,7 @@ def my_form_open(dialog, layer, feature): Curve catalog - + 0 @@ -15890,7 +17916,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -15920,12 +17946,144 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -15938,46 +18096,46 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -16039,10 +18197,10 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - + + + + @@ -16051,7 +18209,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -16071,7 +18229,7 @@ def my_form_open(dialog, layer, feature): Inp inlet - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16094,7 +18252,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16124,68 +18282,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -16209,201 +18480,201 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - @@ -16539,23 +18810,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -16564,7 +18835,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -16584,7 +18855,7 @@ def my_form_open(dialog, layer, feature): Inp junction - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16607,7 +18878,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -16637,68 +18908,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -16722,229 +19106,240 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -16960,19 +19355,19 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -16981,7 +19376,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_pattern_aa06a7c7_458c_4809_a192_2495d2bf77fd __DATASOURCE__ key='pattern_id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_pattern" @@ -16989,7 +19384,7 @@ def my_form_open(dialog, layer, feature): Patterns catalog - + 0 @@ -17012,7 +19407,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -17042,68 +19437,200 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - @@ -17170,11 +19697,11 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - + + + + + @@ -17183,7 +19710,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -17203,7 +19730,7 @@ def my_form_open(dialog, layer, feature): Inp pipe - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17235,7 +19762,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17248,7 +19775,7 @@ def my_form_open(dialog, layer, feature): - + @@ -17273,90 +19800,195 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -17367,243 +19999,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -17611,12 +20186,12 @@ def my_form_open(dialog, layer, feature): - + @@ -17627,275 +20202,275 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -17927,65 +20502,65 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + "arc_id" - + __XMIN__ __YMIN__ @@ -18005,7 +20580,7 @@ def my_form_open(dialog, layer, feature): Inp pump - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18028,7 +20603,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18058,68 +20633,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -18143,198 +20831,198 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -18342,110 +21030,110 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - @@ -18461,24 +21149,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -18487,7 +21175,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -18507,7 +21195,7 @@ def my_form_open(dialog, layer, feature): Inp reservoir - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18530,7 +21218,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18560,68 +21248,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -18645,142 +21446,142 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - @@ -18883,18 +21684,18 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + @@ -18903,7 +21704,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -18923,7 +21724,7 @@ def my_form_open(dialog, layer, feature): Inp shortpipe - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18946,7 +21747,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18976,68 +21777,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -19061,151 +21975,151 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -19213,90 +22127,90 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - @@ -19312,19 +22226,19 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -19333,7 +22247,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_tank_8676b600_bb6e_4637_bf1b_f920e82136f0 __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_tank" (the_geom) @@ -19341,7 +22255,7 @@ def my_form_open(dialog, layer, feature): Inp tank - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19364,7 +22278,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19394,73 +22308,186 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -19479,187 +22506,187 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - @@ -19786,23 +22813,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -19811,7 +22838,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -19831,7 +22858,7 @@ def my_form_open(dialog, layer, feature): Inp valve - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19854,7 +22881,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19884,68 +22911,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -19969,214 +23109,214 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - @@ -20314,25 +23454,25 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -20341,7 +23481,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_inp_virtualvalve_4b99c158_7f04_4765_9bff_b93fe2f489c8 __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_inp_virtualvalve" (the_geom) @@ -20349,7 +23489,7 @@ def my_form_open(dialog, layer, feature): Inp virtualvalve - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20372,7 +23512,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20402,84 +23542,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - + - + @@ -20731,125 +23967,121 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - @@ -20865,27 +24097,27 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -20894,7 +24126,7 @@ def my_form_open(dialog, layer, feature): - + __XMIN__ __YMIN__ @@ -20908,13 +24140,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_bf3255de_b7b9_47f1_b2d1_2275d23b83d7 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20937,7 +24169,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20967,157 +24199,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -21130,89 +24445,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -21220,18 +24508,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -21242,289 +24530,347 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - + + - + - + - - + + - - + - - + + - - + + + + + + + + + + + + + - + + + + + + + - - + + - - + + - - + + - + - - + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -21556,70 +24902,70 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + "link_id" - + __XMIN__ __YMIN__ @@ -21639,7 +24985,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21671,7 +25017,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21684,7 +25030,7 @@ def my_form_open(dialog, layer, feature): - + @@ -21709,2401 +25055,1884 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - @@ -24112,90 +26941,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -24203,12 +27005,12 @@ def my_form_open(dialog, layer, feature): - + @@ -24219,1223 +27021,1399 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + + + + + + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - - + + - - + + - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -25467,260 +28445,260 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + __XMIN__ __YMIN__ @@ -25740,7 +28718,7 @@ def my_form_open(dialog, layer, feature): Plan psector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25772,7 +28750,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -25785,7 +28763,7 @@ def my_form_open(dialog, layer, feature): - + @@ -25810,52 +28788,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -25866,250 +28965,193 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -26117,256 +29159,256 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -26539,50 +29581,50 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -26590,7 +29632,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -26610,7 +29652,7 @@ def my_form_open(dialog, layer, feature): Presszone - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26642,7 +29684,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -26655,7 +29697,7 @@ def my_form_open(dialog, layer, feature): - + @@ -26680,52 +29722,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -26736,89 +29899,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -26826,91 +29962,91 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -27002,21 +30138,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -27024,7 +30160,7 @@ def my_form_open(dialog, layer, feature): "name" - + __XMIN__ __YMIN__ @@ -27044,7 +30180,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27076,7 +30212,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27089,7 +30225,7 @@ def my_form_open(dialog, layer, feature): - + @@ -27114,52 +30250,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -27170,90 +30427,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -27261,110 +30491,110 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -27465,23 +30695,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - + + + + + + + @@ -27489,7 +30719,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -27509,7 +30739,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27541,7 +30771,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -27554,7 +30784,7 @@ def my_form_open(dialog, layer, feature): - + @@ -27579,68 +30809,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -27651,243 +30994,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -27895,12 +31181,12 @@ def my_form_open(dialog, layer, feature): - + @@ -27911,140 +31197,140 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -28076,24 +31362,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -28101,7 +31387,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -28121,7 +31407,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28153,7 +31439,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28166,7 +31452,7 @@ def my_form_open(dialog, layer, feature): - + @@ -28191,52 +31477,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -28247,89 +31654,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -28337,142 +31717,142 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - + - + - + - + - + @@ -28480,80 +31860,80 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -28585,32 +31965,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -28618,7 +31998,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -28638,7 +32018,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28670,7 +32050,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -28683,7 +32063,7 @@ def my_form_open(dialog, layer, feature): - + @@ -28708,84 +32088,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -29057,12 +32485,12 @@ def my_form_open(dialog, layer, feature): - + @@ -29073,140 +32501,140 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -29238,41 +32666,41 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_arc" (the_geom) @@ -29280,7 +32708,7 @@ def my_form_open(dialog, layer, feature): Mincut result arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29312,7 +32740,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29325,7 +32753,7 @@ def my_form_open(dialog, layer, feature): - + @@ -29350,149 +32778,227 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -29593,12 +33072,12 @@ def my_form_open(dialog, layer, feature): - + @@ -29609,78 +33088,78 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - + - + - @@ -29712,16 +33191,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -29729,7 +33208,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut" (anl_the_geom) @@ -29737,7 +33216,7 @@ def my_form_open(dialog, layer, feature): Mincut init point - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29769,7 +33248,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -29782,7 +33261,7 @@ def my_form_open(dialog, layer, feature): - + @@ -29807,68 +33286,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -29879,89 +33471,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -29969,12 +33534,12 @@ def my_form_open(dialog, layer, feature): - + @@ -29985,324 +33550,324 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -30539,78 +34104,78 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30618,7 +34183,7 @@ def my_form_open(dialog, layer, feature): expl_name - + v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_connec" (the_geom) @@ -30626,7 +34191,7 @@ def my_form_open(dialog, layer, feature): Mincut result connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30658,7 +34223,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30671,7 +34236,7 @@ def my_form_open(dialog, layer, feature): - + @@ -30696,68 +34261,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -30858,12 +34509,12 @@ def my_form_open(dialog, layer, feature): - + @@ -30874,92 +34525,92 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -30991,18 +34642,18 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - + + + + + - - - - - + + + + + @@ -31010,7 +34661,7 @@ def my_form_open(dialog, layer, feature): id - + v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_node" (the_geom) @@ -31018,7 +34669,7 @@ def my_form_open(dialog, layer, feature): Mincut result node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31050,7 +34701,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31063,7 +34714,7 @@ def my_form_open(dialog, layer, feature): - + @@ -31088,68 +34739,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - @@ -31160,89 +34924,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -31250,12 +34987,12 @@ def my_form_open(dialog, layer, feature): - + @@ -31266,43 +35003,43 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -31380,16 +35117,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -31397,7 +35134,7 @@ def my_form_open(dialog, layer, feature): id - + v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_valve" (the_geom) @@ -31405,7 +35142,7 @@ def my_form_open(dialog, layer, feature): Mincut result valve - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31437,7 +35174,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -31450,7 +35187,7 @@ def my_form_open(dialog, layer, feature): - + @@ -31475,190 +35212,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -31759,12 +35544,12 @@ def my_form_open(dialog, layer, feature): - + @@ -31775,138 +35560,138 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -31938,24 +35723,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -31963,7 +35748,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -31983,7 +35768,7 @@ def my_form_open(dialog, layer, feature): Current psector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32015,7 +35800,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32028,7 +35813,7 @@ def my_form_open(dialog, layer, feature): - + @@ -32053,52 +35838,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - @@ -32109,254 +36015,197 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - + - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -32364,346 +36213,346 @@ def my_form_open(dialog, layer, feature): - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -32735,58 +36584,58 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -32794,15 +36643,15 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - - v_plan_psector_arc_528a4229_fce4_4b54_8206_a755ccad86e1 - __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_arc" (the_geom) + + v_plan_psector_arc_dce5486b_c6a3_4689_a9de_daac853ecaf0 + __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_arc" (the_geom) Plan psector arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32825,7 +36674,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -32855,87 +36704,192 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + v_plan_psector_connec_15a9ba6e_663a_42b9_8d65_66377a94eb7c - __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_connec" (the_geom) + __DATASOURCE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_connec" (the_geom) Plan psector connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33208,7 +37162,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33238,344 +37192,363 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + v_plan_psector_link_70d1eea8_15c5_473e_95d2_a50a6da9d7ef - __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_link" (the_geom) + __DATASOURCE__ key='rid' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_link" (the_geom) Plan psector link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33833,7 +37806,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -33863,160 +37836,243 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - @@ -34027,89 +38083,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -34117,12 +38146,12 @@ def my_form_open(dialog, layer, feature): - + @@ -34133,134 +38162,134 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -34292,23 +38321,23 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - + + + + + + + @@ -34316,15 +38345,15 @@ def my_form_open(dialog, layer, feature): "link_id" - - v_plan_psector_node_748dc6f3_72ea_4fd3_b063_2230d58ef4a1 - __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_node" (the_geom) + + v_plan_psector_node_2c158ecf_3501_42c0_9eca_ac0a9b49f34e + __DATASOURCE__ sslmode=__SSLMODE__ key='rid' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_plan_psector_node" (the_geom) Plan psector node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34347,7 +38376,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34377,71 +38406,184 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - - + __XMIN__ __YMIN__ @@ -34682,13 +38824,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_arc_all_1a5f8bfc_1ba7_4596_9364_647fe51d4de7 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_all" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_all" (the_geom) Arc all values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34720,7 +38862,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -34733,7 +38875,7 @@ def my_form_open(dialog, layer, feature): - + @@ -34758,482 +38900,764 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + - @@ -35241,81 +39665,54 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -35323,18 +39720,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -35345,181 +39742,193 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + + + + + + + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - + + - + - + - @@ -35551,92 +39960,95 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "arc_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -35650,13 +40062,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_arc_c1c32dd7_4e28_4a25_a25b_c6e425e67bcc - __DATASOURCE__ sslmode=__SSLMODE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc" (the_geom) + __DATASOURCE__ key='arc_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc" (the_geom) Arc maximum values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35675,11 +40087,20 @@ def my_form_open(dialog, layer, feature): dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -35691,7 +40112,15 @@ def my_form_open(dialog, layer, feature): - + + + + + + + + + postgres @@ -35709,563 +40138,818 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -36273,18 +40957,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -36295,279 +40979,287 @@ def my_form_open(dialog, layer, feature): - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -36599,79 +41291,130 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "arc_id", '<NULL>' ) - + v_rpt_arc_hourly_7d8fcfd3_31e9_4b2e_b773_37b089981522 - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_hourly" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_arc_hourly" (the_geom) Arc hourly values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36694,7 +41437,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -36724,563 +41467,819 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -37288,18 +42287,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -37310,153 +42309,165 @@ def my_form_open(dialog, layer, feature): - + - + - + + + + + + + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - + + - + - + - @@ -37488,92 +42499,92 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "arc_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -37587,13 +42598,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_node_05f30732_cb83_4bca_9d49_6160ac61b3ae - __DATASOURCE__ sslmode=__SSLMODE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) + __DATASOURCE__ key='node_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node" (the_geom) Node minimum values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37612,11 +42623,20 @@ def my_form_open(dialog, layer, feature): dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -37628,7 +42648,15 @@ def my_form_open(dialog, layer, feature): - + + + + + + + + + postgres @@ -37646,388 +42674,403 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -38283,18 +43269,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -38305,220 +43291,253 @@ def my_form_open(dialog, layer, feature): - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - + + - + - + - @@ -38550,56 +43569,95 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + COALESCE( "node_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -38613,13 +43671,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_rpt_node_all_99d83ee9_a698_42d2_b04c_c78c50a9bbae - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_all" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_all" (the_geom) Node all values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38642,7 +43700,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -38672,388 +43730,403 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -39309,18 +44325,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -39331,181 +44347,192 @@ def my_form_open(dialog, layer, feature): - + - + - + - + + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + - - + + - + - + - @@ -39537,58 +44564,58 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + "node_id" - + v_rpt_node_hourly_aaae159a_78ad_4885_a43a_20faa971123c - __DATASOURCE__ sslmode=__SSLMODE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_hourly" (the_geom) + __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_rpt_node_hourly" (the_geom) Node hourly values - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39607,11 +44634,20 @@ def my_form_open(dialog, layer, feature): dataset + + + + + + + + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -39623,7 +44659,15 @@ def my_form_open(dialog, layer, feature): - + + + + + + + + + postgres @@ -39641,388 +44685,403 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -40278,18 +45280,18 @@ def my_form_open(dialog, layer, feature): - + - @@ -40300,153 +45302,165 @@ def my_form_open(dialog, layer, feature): - + - + - + + + + + + + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - + + - + - + - @@ -40478,44 +45492,47 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + + "node_id" - + __XMIN__ __YMIN__ @@ -40535,7 +45552,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40567,7 +45584,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40580,7 +45597,7 @@ def my_form_open(dialog, layer, feature): - + @@ -40605,98 +45622,208 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - - + - - 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -40796,61 +45896,61 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -40927,14 +46027,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -40942,7 +46042,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -40962,7 +46062,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -40994,7 +46094,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -41007,7 +46107,7 @@ def my_form_open(dialog, layer, feature): - + @@ -41032,141 +46132,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - + + + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - + + + - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - - @@ -41175,89 +46374,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -41265,61 +46437,61 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - + - + - @@ -41396,14 +46568,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -41445,8 +46617,6 @@ def my_form_open(dialog, layer, feature): - - @@ -41459,33 +46629,27 @@ def my_form_open(dialog, layer, feature): + + sdfeaf - SELECT link.link_id, -link.connec_id, -link.vnode_id, -st_length2d(link.the_geom) AS gis_length, -link.custom_length, -connec.connecat_id, -link.the_geom -FROM (sample_epanet.link + SELECT link.link_id, +link.connec_id, +link.vnode_id, +st_length2d(link.the_geom) AS gis_length, +link.custom_length, +connec.connecat_id, +link.the_geom +FROM (sample_epanet.link LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id)::text))); - - 255 - - - - - 1 - true - + true @@ -42145,9 +47309,9 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): @@ -42174,105 +47338,83 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - + + + @@ -42296,656 +47438,942 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - cat_mat_node20160224165702530 - cat_mat_arc20160224165702501 - cat_node20151105202206790 - cat_arc20151120192002466 - cat_connec20160216122620764 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_address20180201103159332 - v_ext_plot20180201103159443 + cat_mat_node20160224165702530 + cat_mat_arc20160224165702501 + cat_node20151105202206790 + cat_arc20151120192002466 + cat_connec20160216122620764 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_address20180201103159332 + v_ext_plot20180201103159443 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -43005,101 +48433,101 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -43152,36 +48580,36 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + .. - - - + + + - + - + - .. @@ -43205,36 +48633,36 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + .. - - - + + + - + - + - .. @@ -43258,106 +48686,106 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -43411,34 +48839,34 @@ def my_form_open(dialog, layer, feature): 4 - - + + - - + + - - + + - - + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -43447,145 +48875,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -43596,68 +49024,68 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -43697,434 +49125,434 @@ def my_form_open(dialog, layer, feature): 2 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -44133,290 +49561,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -44427,90 +49855,90 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -44561,53 +49989,53 @@ def my_form_open(dialog, layer, feature): 1 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -44616,144 +50044,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -44764,76 +50192,76 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -44877,61 +50305,61 @@ def my_form_open(dialog, layer, feature): 0 - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -44940,144 +50368,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -45088,72 +50516,72 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -45203,206 +50631,149 @@ def my_form_open(dialog, layer, feature): - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -45410,45 +50781,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -45637,127 +51206,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -45765,15 +51455,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -45781,315 +51471,291 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -46099,19 +51765,19 @@ def my_form_open(dialog, layer, feature): - + - + - + @@ -46119,189 +51785,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -46317,14 +51961,14 @@ def my_form_open(dialog, layer, feature): - + @@ -46332,189 +51976,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -46532,110 +52154,88 @@ def my_form_open(dialog, layer, feature): - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - + + + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - - - - - - - - - - - - - + + + - + - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - - + + - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - @@ -47557,391 +53241,400 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 - v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a - v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 - v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b - v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 + v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a + v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 + v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b + v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -47951,26 +53644,26 @@ def my_form_open(dialog, layer, feature): - + - + - - - + + + - @@ -47980,17 +53673,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -48003,19 +53697,55 @@ def my_form_open(dialog, layer, feature): + + + - + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + diff --git a/resources/templates/qgisproject/en_US/ws_om.qgs b/resources/templates/qgisproject/en_US/ws_om.qgs index 547d24c15..9790dfed6 100644 --- a/resources/templates/qgisproject/en_US/ws_om.qgs +++ b/resources/templates/qgisproject/en_US/ws_om.qgs @@ -1,12 +1,11 @@ - + - - - + + - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22,204 +21,204 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -252,30 +251,30 @@ v_edit_link_bf3255de_b7b9_47f1_b2d1_2275d23b83d7 - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + @@ -290,7 +289,7 @@ 0 - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -307,171 +306,171 @@ - - - - - - - degrees - - __XMIN__ - __YMIN__ - __XMAX__ - __YMAX__ - - 0 - - - - +proj=longlat +datum=WGS84 +no_defs - 3452 - 4326 - EPSG:4326 - WGS 84 - longlat - EPSG:7030 - true - - - 0 - - - + Annotations_a3df3e48_0a8f_4af8_b12e_b88b251e29e3 @@ -513,7 +486,7 @@ - + 0 @@ -536,7 +509,7 @@ - + 0 @@ -556,7 +529,7 @@ - + cat_arc20151120192002466 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_arc" @@ -564,7 +537,7 @@ Arc catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -596,7 +569,7 @@ - + 0 @@ -609,7 +582,7 @@ - + @@ -634,276 +607,408 @@ 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -970,101 +1075,101 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - @@ -1096,60 +1201,60 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1157,7 +1262,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_connec20160216122620764 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_connec" @@ -1165,7 +1270,7 @@ def my_form_open(dialog, layer, feature): Connec catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1197,7 +1302,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1210,7 +1315,7 @@ def my_form_open(dialog, layer, feature): - + @@ -1235,175 +1340,307 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -1422,66 +1659,66 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - + + + - + - @@ -1513,42 +1750,42 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -1556,7 +1793,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_arc20160224165702501 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_arc" @@ -1564,7 +1801,7 @@ def my_form_open(dialog, layer, feature): Arc material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1587,7 +1824,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1617,65 +1854,197 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - - - - + + + + @@ -1684,32 +2053,32 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - - - + + + - + - @@ -1725,10 +2094,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -1737,7 +2106,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_mat_node20160224165702530 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_mat_node" @@ -1745,7 +2114,7 @@ def my_form_open(dialog, layer, feature): Node material catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1768,7 +2137,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1798,65 +2167,197 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - - - - + + + + @@ -1865,32 +2366,32 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - - - + + + - + - @@ -1906,10 +2407,10 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + @@ -1918,7 +2419,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + cat_node20151105202206790 __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."cat_node" @@ -1926,7 +2427,7 @@ def my_form_open(dialog, layer, feature): Node catalog - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -1958,7 +2459,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -1971,7 +2472,7 @@ def my_form_open(dialog, layer, feature): - + @@ -1996,279 +2497,411 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - - + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -2293,81 +2926,81 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - + + + - + - @@ -2399,48 +3032,48 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -2448,7 +3081,7 @@ def my_form_open(dialog, layer, feature): COALESCE("id", '<NULL>') - + __XMIN__ __YMIN__ @@ -2468,7 +3101,7 @@ def my_form_open(dialog, layer, feature): Municipality - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2500,7 +3133,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2513,7 +3146,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2538,145 +3171,239 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -2684,71 +3411,71 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - - - - + + + + @@ -2757,28 +3484,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - + - + - @@ -2810,16 +3537,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -2827,7 +3554,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "name", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -2847,7 +3574,7 @@ def my_form_open(dialog, layer, feature): Arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2879,7 +3606,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -2892,7 +3619,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2917,312 +3644,336 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -3231,243 +3982,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -3475,928 +4169,1000 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4483,270 +5249,297 @@ def my_form_open(dialog, layer, feature): + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -4778,271 +5571,271 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "arc_id" - + v_edit_cat_feature_arc_e9a8f87d_5db9_4265_9496_b9ee76cffadd __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_arc" @@ -5050,7 +5843,7 @@ def my_form_open(dialog, layer, feature): Arc feature catalog - + 0 @@ -5073,7 +5866,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5103,74 +5896,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -5199,30 +6124,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -5245,7 +6170,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_connec_79421626_dc83_4ace_a970_9edeceeef98d __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_connec" @@ -5253,7 +6178,7 @@ def my_form_open(dialog, layer, feature): Connec feature catalog - + 0 @@ -5276,7 +6201,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5306,74 +6231,206 @@ def my_form_open(dialog, layer, feature): 1 0 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -5402,30 +6459,30 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + @@ -5448,7 +6505,7 @@ def my_form_open(dialog, layer, feature): - + v_edit_cat_feature_node_ea70bfb4_8fbc_4012_8ac4_3f3f7b2557ae __DATASOURCE__ key='id' checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_cat_feature_node" @@ -5456,7 +6513,7 @@ def my_form_open(dialog, layer, feature): Node feature catalog - + 0 @@ -5479,7 +6536,7 @@ def my_form_open(dialog, layer, feature): - + 0 @@ -5509,116 +6566,248 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - - - - - - - - - - - - - - - + __XMIN__ __YMIN__ @@ -5737,7 +6926,7 @@ def my_form_open(dialog, layer, feature): Connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5769,7 +6958,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -5782,7 +6971,7 @@ def my_form_open(dialog, layer, feature): - + @@ -5807,443 +6996,462 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - @@ -6252,89 +7460,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -6342,900 +7523,1012 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7320,264 +8613,306 @@ def my_form_open(dialog, layer, feature): + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -7609,267 +8944,267 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "connec_id" - + v_edit_dimensions20170628134034849 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_dimensions" (the_geom) @@ -7877,7 +9212,7 @@ def my_form_open(dialog, layer, feature): Dimensioning - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7909,7 +9244,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -7922,7 +9257,7 @@ def my_form_open(dialog, layer, feature): - + @@ -7947,1187 +9282,933 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -9138,986 +10219,898 @@ def my_form_open(dialog, layer, feature): - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - - + + + - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - - - - + + + - - - @@ -10126,229 +11119,202 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -10356,195 +11322,195 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -10565,64 +11531,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - @@ -10654,40 +11620,40 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -10695,7 +11661,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -10715,7 +11681,7 @@ def my_form_open(dialog, layer, feature): Dma - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10747,7 +11713,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -10760,7 +11726,7 @@ def my_form_open(dialog, layer, feature): - + @@ -10785,150 +11751,244 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -10936,167 +11996,167 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -11139,64 +12199,64 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - + + + - + - @@ -11228,35 +12288,35 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -11264,7 +12324,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -11284,7 +12344,7 @@ def my_form_open(dialog, layer, feature): Dqa - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11316,7 +12376,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11329,7 +12389,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11354,52 +12414,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -11410,94 +12591,67 @@ def my_form_open(dialog, layer, feature): - 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -11505,161 +12659,161 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + @@ -11676,51 +12830,51 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -11752,33 +12906,33 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -11786,7 +12940,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + v_edit_element20170828122555146 __DATASOURCE__ key='element_id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_element" (the_geom) @@ -11794,7 +12948,7 @@ def my_form_open(dialog, layer, feature): Element - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11826,7 +12980,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -11839,7 +12993,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11864,68 +13018,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -11936,89 +13203,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -12026,369 +13266,369 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -12424,109 +13664,109 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -12558,70 +13798,70 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -12636,7 +13876,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "element_id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -12656,7 +13896,7 @@ def my_form_open(dialog, layer, feature): Exploitation - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12688,7 +13928,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -12701,7 +13941,7 @@ def my_form_open(dialog, layer, feature): - + @@ -12726,52 +13966,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -12782,90 +14143,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -12873,110 +14207,110 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - - - - - - - + + + + + + + @@ -12988,37 +14322,37 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - @@ -13050,21 +14384,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -13072,7 +14406,7 @@ def my_form_open(dialog, layer, feature): COALESCE("short_descript", '<NULL>') short_descript - + __XMIN__ __YMIN__ @@ -13086,13 +14420,13 @@ def my_form_open(dialog, layer, feature): __YMAX__ v_edit_link_bf3255de_b7b9_47f1_b2d1_2275d23b83d7 - __DATASOURCE__ sslmode=__SSLMODE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) + __DATASOURCE__ key='link_id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_edit_link" (the_geom) Link - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13115,7 +14449,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13145,157 +14479,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - @@ -13308,89 +14725,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -13398,311 +14788,369 @@ def my_form_open(dialog, layer, feature): - + - - + - + - + - + - + - + - + - - - - - - - - + - + - + - - + + - - + - - + + - + - - + + - + - - + + - - + + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - + + + + + - + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -13734,70 +15182,70 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + "link_id" - + __XMIN__ __YMIN__ @@ -13817,7 +15265,7 @@ def my_form_open(dialog, layer, feature): Node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13849,7 +15297,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -13862,7 +15310,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13887,2401 +15335,1884 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + + - - @@ -16290,90 +17221,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -16381,901 +17285,1029 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17359,261 +18391,309 @@ def my_form_open(dialog, layer, feature): + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -17645,260 +18725,260 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node_id" - + __XMIN__ __YMIN__ @@ -17918,7 +18998,7 @@ def my_form_open(dialog, layer, feature): Presszone - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17950,7 +19030,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -17963,7 +19043,7 @@ def my_form_open(dialog, layer, feature): - + @@ -17988,145 +19068,239 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - + + - - - - - - - - 0 - 0 - 1 - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -18134,91 +19308,91 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -18247,38 +19421,38 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -18310,21 +19484,21 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - + + + + + + + - - - - - - + + + + + + @@ -18332,7 +19506,7 @@ def my_form_open(dialog, layer, feature): "name" - + __XMIN__ __YMIN__ @@ -18352,7 +19526,7 @@ def my_form_open(dialog, layer, feature): Sector - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18384,7 +19558,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18397,7 +19571,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18422,52 +19596,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -18478,90 +19773,63 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -18569,110 +19837,110 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + @@ -18705,43 +19973,43 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - @@ -18773,23 +20041,23 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - + + + + + + + @@ -18797,7 +20065,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "descript", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -18817,7 +20085,7 @@ def my_form_open(dialog, layer, feature): Address - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18849,7 +20117,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -18862,7 +20130,7 @@ def my_form_open(dialog, layer, feature): - + @@ -18887,68 +20155,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -18959,243 +20340,186 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - + 0 0 0.61 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -19203,110 +20527,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -19319,40 +20643,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -19384,24 +20708,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -19409,7 +20733,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + __XMIN__ __YMIN__ @@ -19429,7 +20753,7 @@ def my_form_open(dialog, layer, feature): Plot - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19461,7 +20785,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19474,7 +20798,7 @@ def my_form_open(dialog, layer, feature): - + @@ -19499,52 +20823,173 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - + + @@ -19555,89 +21000,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -19645,142 +21063,142 @@ def my_form_open(dialog, layer, feature): - + - - + - - + - + - + - + - + - + - + - + - + - + - + - + @@ -19788,18 +21206,18 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + @@ -19816,52 +21234,52 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - @@ -19893,32 +21311,32 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + @@ -19926,7 +21344,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -19946,7 +21364,7 @@ def my_form_open(dialog, layer, feature): Streetaxis - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19978,7 +21396,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -19991,7 +21409,7 @@ def my_form_open(dialog, layer, feature): - + @@ -20016,84 +21434,189 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -20104,260 +21627,203 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + - - - + + + - - - - + 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -20365,110 +21831,110 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -20481,40 +21947,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -20546,41 +22012,41 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + COALESCE( "name", '<NULL>' ) - + v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 __DATASOURCE__ key='id' srid=__SRID__ type=LineString checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_arc" (the_geom) @@ -20588,7 +22054,7 @@ def my_form_open(dialog, layer, feature): Mincut result arc - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20620,7 +22086,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -20633,7 +22099,7 @@ def my_form_open(dialog, layer, feature): - + @@ -20658,242 +22124,293 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - - - - - - - - 0 - 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -20901,64 +22418,64 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - + + + + @@ -20967,28 +22484,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - + - + - @@ -21020,16 +22537,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -21037,7 +22554,7 @@ def my_form_open(dialog, layer, feature): COALESCE( "id", '<NULL>' ) - + v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut" (anl_the_geom) @@ -21045,7 +22562,7 @@ def my_form_open(dialog, layer, feature): Mincut init point - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21077,7 +22594,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21090,7 +22607,7 @@ def my_form_open(dialog, layer, feature): - + @@ -21115,68 +22632,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -21187,89 +22817,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -21277,340 +22880,340 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -21697,125 +23300,125 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - @@ -21847,78 +23450,78 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -21926,7 +23529,7 @@ def my_form_open(dialog, layer, feature): expl_name - + v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_connec" (the_geom) @@ -21934,7 +23537,7 @@ def my_form_open(dialog, layer, feature): Mincut result connec - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21966,7 +23569,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -21979,7 +23582,7 @@ def my_form_open(dialog, layer, feature): - + @@ -22004,68 +23607,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -22076,89 +23792,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -22166,74 +23855,74 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - - - - - + + + + + @@ -22243,31 +23932,31 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -22299,18 +23988,18 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - + + + + + - - - - - + + + + + @@ -22318,7 +24007,7 @@ def my_form_open(dialog, layer, feature): id - + v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_node" (the_geom) @@ -22326,7 +24015,7 @@ def my_form_open(dialog, layer, feature): Mincut result node - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22358,7 +24047,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22371,7 +24060,7 @@ def my_form_open(dialog, layer, feature): - + @@ -22396,68 +24085,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -22468,89 +24270,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -22558,59 +24333,59 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - - - - - + + + + + @@ -22633,30 +24408,30 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -22688,16 +24463,16 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - + + + + - - - - + + + + @@ -22705,7 +24480,7 @@ def my_form_open(dialog, layer, feature): id - + v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a __DATASOURCE__ key='id' srid=__SRID__ type=Point checkPrimaryKeyUnicity='1' table="SCHEMA_NAME"."v_om_mincut_valve" (the_geom) @@ -22713,7 +24488,7 @@ def my_form_open(dialog, layer, feature): Mincut result valve - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22745,7 +24520,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -22758,7 +24533,7 @@ def my_form_open(dialog, layer, feature): - + @@ -22783,190 +24558,265 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + @@ -22977,89 +24827,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -23067,108 +24890,108 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + @@ -23181,40 +25004,40 @@ def my_form_open(dialog, layer, feature): - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - + - @@ -23246,24 +25069,24 @@ def my_form_open(dialog, layer, feature): 2 generatedlayout - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + @@ -23271,7 +25094,7 @@ def my_form_open(dialog, layer, feature): id - + __XMIN__ __YMIN__ @@ -23291,7 +25114,7 @@ def my_form_open(dialog, layer, feature): Connec polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23323,7 +25146,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23336,7 +25159,7 @@ def my_form_open(dialog, layer, feature): - + @@ -23361,190 +25184,273 @@ def my_form_open(dialog, layer, feature): 1 0 - + - - - - - - - + + + + + + - - - - - - - - - - - - - + + - + + + - - - - - - - - - - - - - + + - - - - - - 0 - 0 - 1 - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + + + + + + + + @@ -23552,61 +25458,61 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -23629,29 +25535,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -23683,14 +25589,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -23698,7 +25604,7 @@ def my_form_open(dialog, layer, feature): "pol_id" - + __XMIN__ __YMIN__ @@ -23718,7 +25624,7 @@ def my_form_open(dialog, layer, feature): Node polygon - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23750,7 +25656,7 @@ def my_form_open(dialog, layer, feature): - + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -23763,7 +25669,7 @@ def my_form_open(dialog, layer, feature): - + @@ -23788,141 +25694,240 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + @@ -23931,89 +25936,62 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -24021,61 +25999,61 @@ def my_form_open(dialog, layer, feature): - + - + - - + - + - + - + - + - - - - - + + + + + @@ -24098,29 +26076,29 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + - - - - - + + + + + - + - + - @@ -24152,14 +26130,14 @@ def my_form_open(dialog, layer, feature): 0 generatedlayout - - - + + + - - - + + + @@ -24198,27 +26176,19 @@ def my_form_open(dialog, layer, feature): sdfeaf - SELECT link.link_id, -link.connec_id, -link.vnode_id, -st_length2d(link.the_geom) AS gis_length, -link.custom_length, -connec.connecat_id, -link.the_geom -FROM (sample_epanet.link + SELECT link.link_id, +link.connec_id, +link.vnode_id, +st_length2d(link.the_geom) AS gis_length, +link.custom_length, +connec.connecat_id, +link.the_geom +FROM (sample_epanet.link LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id)::text))); - - 255 - - - - - 1 - true - + true @@ -24878,9 +26848,9 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): @@ -24907,105 +26877,83 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - - + + @@ -25013,15 +26961,15 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + @@ -25029,656 +26977,942 @@ LEFT JOIN sample_epanet.connec ON (((connec.connec_id)::text = (link.connec_id): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - cat_mat_node20160224165702530 - cat_mat_arc20160224165702501 - cat_node20151105202206790 - cat_arc20151120192002466 - cat_connec20160216122620764 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_address20180201103159332 - v_ext_plot20180201103159443 + cat_mat_node20160224165702530 + cat_mat_arc20160224165702501 + cat_node20151105202206790 + cat_arc20151120192002466 + cat_connec20160216122620764 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_address20180201103159332 + v_ext_plot20180201103159443 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - .. @@ -25710,129 +27944,129 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - .. @@ -25864,57 +28098,57 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -25930,44 +28164,44 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + .. - - - + + + - + - + - .. @@ -25983,114 +28217,114 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + .. - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - .. @@ -26122,56 +28356,56 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + COALESCE("id", '<NULL>') 4 - - + + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -26180,145 +28414,145 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -26328,69 +28562,69 @@ def my_form_open(dialog, layer, feature): name - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - + + + - + - .. @@ -26422,442 +28656,442 @@ def my_form_open(dialog, layer, feature): - - - + + + COALESCE( "name", '<NULL>' ) 2 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -26866,290 +29100,290 @@ def my_form_open(dialog, layer, feature): - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - - + + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - + - + - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -27159,91 +29393,91 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + . - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - ../../../../../../Users/usuario/.qgis2/python/plugins/giswater/ui/dimensions.ui @@ -27275,72 +29509,72 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - + + + + + + + + + + + + + + COALESCE( "id", '<NULL>' ) 1 - - + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -27349,144 +29583,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -27496,77 +29730,77 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - + + + + + + + - + - .. @@ -27598,73 +29832,73 @@ def my_form_open(dialog, layer, feature): - - - - - - - + + + + + + + COALESCE( "id", '<NULL>' ) 0 - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -27673,144 +29907,144 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -27820,73 +30054,73 @@ def my_form_open(dialog, layer, feature): id - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + .. - - - - - - - - - - - - + + + + + + + + + + + + - + .. @@ -27918,224 +30152,167 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - + + + + + + + + + + + + 2 - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -28143,45 +30320,34 @@ def my_form_open(dialog, layer, feature): - - + + - - - - - - - - - - - - - + + @@ -28189,9 +30355,9 @@ def my_form_open(dialog, layer, feature): @@ -28199,170 +30365,379 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -28370,127 +30745,248 @@ def my_form_open(dialog, layer, feature): - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + @@ -28498,15 +30994,15 @@ def my_form_open(dialog, layer, feature): - - - + + + @@ -28514,315 +31010,291 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -28830,21 +31302,21 @@ def my_form_open(dialog, layer, feature): - + - + - + - + @@ -28852,189 +31324,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -29050,14 +31500,14 @@ def my_form_open(dialog, layer, feature): - + @@ -29065,189 +31515,167 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - - - - - - - - - - - - + - + - - - - + + + + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -29265,110 +31693,88 @@ def my_form_open(dialog, layer, feature): - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - - + + @@ -29376,494 +31782,413 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - - - - + + + + - - - - - - - - - - - - - + + - + - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - - + + - - - - - - - - - - - - - + + @@ -29871,9 +32196,9 @@ def my_form_open(dialog, layer, feature): @@ -29881,408 +32206,573 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - @@ -30290,391 +32780,400 @@ def my_form_open(dialog, layer, feature): - - - + + + - + - + - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + - v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 - v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a - v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 - v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b - v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 - v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 - v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f - v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 - v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca - ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 - ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 - v_edit_dimensions20170628134034849 - ext_municipality20171204170633784 - v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 - v_ext_plot20180201103159443 + v_om_mincut_cdd04177_e5c9_433b_9828_ba4e651f2c43 + v_om_mincut_valve_c9c9c530_f8de_40a3_89c2_eef396ae238a + v_om_mincut_node_889396c9_30eb_40d5_bf2c_f464fff186a5 + v_om_mincut_connec_ff9f2dd2_aeb7_4283_bb51_bb070d81309b + v_om_mincut_arc_0b67d4c7_c3e5_4fdf_aff6_33078cacec96 + v_edit_exploitation_fd06cc08_9e9d_4a22_bfca_586b3919d086 + v_edit_node_79e9d657_9f6a_4303_b422_e1ba0c998c2f + v_edit_connec_decaeb94_529d_4842_9e89_33c065483403 + v_edit_arc_c8e5e4a7_f9e3_4940_b0b2_40bf55f4c3ca + ve_pol_connec_da965155_3efa_448d_83c5_82ce457fd689 + ve_pol_node_f56fce40_7d46_402c_b62d_87c0348f9226 + v_edit_dimensions20170628134034849 + ext_municipality20171204170633784 + v_ext_streetaxis_4f78944b_a2c1_4f3c_924c_ec36fd045dc7 + v_ext_plot20180201103159443 - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - + + - + - - - - + + + + - + - - - - - - - - - - - - + @@ -30682,28 +33181,28 @@ def my_form_open(dialog, layer, feature): - + - + - + - - - + + + - @@ -30713,17 +33212,18 @@ def my_form_open(dialog, layer, feature): - + + - + - - + + +proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs __SRSID__ @@ -30736,19 +33236,55 @@ def my_form_open(dialog, layer, feature): - - + + + + + + + + + + + + + + + + + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + From 715191abaeaf4ac14a5ed8eebdb77c7070f110ef Mon Sep 17 00:00:00 2001 From: Edgar Fuste Date: Wed, 8 Mar 2023 15:44:58 +0100 Subject: [PATCH 28/28] Update dbmodel --- dbmodel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbmodel b/dbmodel index 57a691e82..a3777019f 160000 --- a/dbmodel +++ b/dbmodel @@ -1 +1 @@ -Subproject commit 57a691e82e96fe881875d8e1941123ddade839c1 +Subproject commit a3777019fc9f8c533ebf3fe4e339c9dcb1e67b71