├── .docker ├── .env ├── docker-compose.yml ├── exec_tests.sh ├── postgis_connexions.ini ├── processing_doc.sh ├── qgis_testrunner.sh ├── schemaspy.sh ├── start.sh └── stop.sh ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── cadastre ├── __init__.py ├── cadastre_common_base.py ├── cadastre_cursor.py ├── cadastre_export.py ├── cadastre_identify_parcelle.py ├── cadastre_import.py ├── cadastre_loading.py ├── cadastre_menu.py ├── composers │ └── paysage_a4.qpt ├── definitions.py ├── dialogs │ ├── __init__.py │ ├── about_dialog.py │ ├── cadastre_export_dialog.py │ ├── cadastre_load_dialog.py │ ├── custom_qcompleter.py │ ├── custom_qpush_button.py │ ├── dialog_common.py │ ├── import_dialog.py │ ├── message_dialog.py │ ├── options_dialog.py │ ├── parcelle_dialog.py │ └── search_dialog.py ├── edigeo_parser.py ├── forms │ ├── cadastre_about_form.ui │ ├── cadastre_import_form.ui │ ├── cadastre_load_form.ui │ ├── cadastre_message_form.ui │ ├── cadastre_option_form.ui │ ├── cadastre_parcelle_form.ui │ ├── cadastre_print_form.ui │ ├── cadastre_search_form.ui │ ├── icons │ │ ├── centrer.png │ │ ├── delete.png │ │ ├── identify.png │ │ ├── open.png │ │ ├── releve.png │ │ ├── search.png │ │ ├── select.png │ │ └── zoom.png │ └── images │ │ ├── logo_3liz.png │ │ ├── logo_aduga.png │ │ ├── logo_asadefrance.png │ │ ├── logo_cd54.png │ │ ├── logo_craig.png │ │ ├── logo_datagences_bretagne.png │ │ ├── logo_europe.png │ │ ├── logo_feder.png │ │ ├── logo_grandnarbonne.png │ │ ├── logo_mtes.png │ │ ├── logo_mtes_2.png │ │ ├── logo_picardie.png │ │ └── logo_rennes_metropole.png ├── getmultipolygonfromvec.py ├── icon.png ├── icons │ ├── about.png │ ├── actions.png │ ├── config.png │ ├── copy.png │ ├── database.png │ ├── identify.png │ ├── mActionSaveAsPDF.png │ ├── nosearch.png │ ├── open.png │ ├── output.png │ ├── print.png │ ├── save.png │ ├── search.png │ └── toolbar │ │ └── get-parcelle-info.png ├── interface │ ├── cadastre.ini │ └── qgis.ini ├── logger.py ├── metadata.txt ├── plausible.py ├── processing │ ├── __init__.py │ ├── algorithms │ │ ├── __init__.py │ │ ├── base.py │ │ ├── config.py │ │ └── edigeo_downloader.py │ └── provider.py ├── scripts │ ├── __init__.py │ ├── css │ │ └── cadastre.css │ ├── plugin │ │ ├── 2011 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2012 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2013 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2014 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2015 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2016 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2017 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2018 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2019 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2020 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2021 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2022 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2023 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── 2024 │ │ │ └── majic3_formatage_donnees.sql │ │ ├── commun_create_metier.sql │ │ ├── commun_creation_contraintes.sql │ │ ├── commun_insert_nomenclatures.sql │ │ ├── commun_suppression_contraintes.sql │ │ ├── edigeo_add_labels_xy.sql │ │ ├── edigeo_create_import_tables.sql │ │ ├── edigeo_create_indexes.sql │ │ ├── edigeo_create_table_parcelle_info_majic.sql │ │ ├── edigeo_create_table_parcelle_info_simple.sql │ │ ├── edigeo_create_table_unite_fonciere.sql │ │ ├── edigeo_drop_indexes.sql │ │ ├── edigeo_formatage_donnees.sql │ │ ├── edigeo_unites_foncieres_postgis.sql │ │ ├── edigeo_unites_foncieres_spatialite.sql │ │ ├── edigeo_update_majic_link.sql │ │ ├── majic3_drop_indexes.sql │ │ ├── majic3_purge_donnees.sql │ │ ├── majic3_purge_donnees_brutes.sql │ │ ├── majic_recuperation_locaux_par_parcelle.sql │ │ ├── majic_recuperation_subdivisions_par_parcelle.sql │ │ └── updates │ │ │ ├── create_commune_majic.sql │ │ │ ├── create_geo_tronroute.sql │ │ │ └── update_structure_postgis_from_1.2.0_to_1.3.0.sql │ └── pyogr │ │ ├── __init__.py │ │ ├── ogr2ogr.py │ │ ├── ogrds.py │ │ ├── ogrinfo.py │ │ └── ogrvrt.py ├── server │ ├── __init__.py │ ├── cadastre_server.py │ └── cadastre_service.py ├── standalone │ └── export.py ├── styles │ ├── classique │ │ ├── geo_batiment.qml │ │ ├── geo_borne.qml │ │ ├── geo_commune.qml │ │ ├── geo_croix.qml │ │ ├── geo_label_lieudit.qml │ │ ├── geo_label_num_voie.qml │ │ ├── geo_label_parcelle.qml │ │ ├── geo_label_parcelle_suf.qml │ │ ├── geo_label_section.qml │ │ ├── geo_label_subdfisc.qml │ │ ├── geo_label_tline.qml │ │ ├── geo_label_tpoint.qml │ │ ├── geo_label_tronfluv.qml │ │ ├── geo_label_tronroute.qml │ │ ├── geo_label_tsurf.qml │ │ ├── geo_label_voiep.qml │ │ ├── geo_label_zoncommuni.qml │ │ ├── geo_lieudit.qml │ │ ├── geo_parcelle.qml │ │ ├── geo_ptcanv.qml │ │ ├── geo_section.qml │ │ ├── geo_subdfisc.qml │ │ ├── geo_subdsect.qml │ │ ├── geo_symblim.qml │ │ ├── geo_tline.qml │ │ ├── geo_tpoint.qml │ │ ├── geo_tronfluv.qml │ │ ├── geo_tronroute.qml │ │ ├── geo_tsurf.qml │ │ ├── geo_unite_fonciere.qml │ │ ├── geo_zoncommuni.qml │ │ ├── parcelle_info.qml │ │ └── svg │ │ │ ├── geo_borne.svg │ │ │ ├── ptcanv_01.svg │ │ │ ├── ptcanv_02.svg │ │ │ ├── ptcanv_03.svg │ │ │ ├── ptcanv_04.svg │ │ │ ├── ptcanv_05.svg │ │ │ ├── ptcanv_06.svg │ │ │ ├── ptcanv_07.svg │ │ │ ├── ptcanv_08.svg │ │ │ ├── ptcanv_09.svg │ │ │ ├── ptcanv_10.svg │ │ │ ├── ptcanv_11.svg │ │ │ ├── ptcanv_71.svg │ │ │ ├── ptcanv_72.svg │ │ │ ├── ptcanv_73.svg │ │ │ ├── ptcanv_74.svg │ │ │ ├── ptcanv_75.svg │ │ │ ├── ptcanv_76.svg │ │ │ ├── ptcanv_77.svg │ │ │ ├── ptcanv_78.svg │ │ │ ├── ptcanv_79.svg │ │ │ ├── ptcanv_80.svg │ │ │ ├── ptcanv_81.svg │ │ │ ├── symblim_39.svg │ │ │ ├── symblim_40.svg │ │ │ ├── symblim_41.svg │ │ │ ├── symblim_42.svg │ │ │ ├── symblim_43.svg │ │ │ ├── symblim_44.svg │ │ │ ├── symblim_45.svg │ │ │ ├── symblim_46.svg │ │ │ ├── tpoint_12.svg │ │ │ ├── tpoint_30.svg │ │ │ ├── tpoint_47.svg │ │ │ ├── tpoint_48.svg │ │ │ ├── tpoint_49.svg │ │ │ ├── tpoint_50.svg │ │ │ ├── tpoint_63.svg │ │ │ ├── tpoint_98.svg │ │ │ ├── tsurf_51.svg │ │ │ ├── tsurf_52.svg │ │ │ └── tsurf_53.svg │ └── orthophoto │ │ ├── geo_batiment.qml │ │ ├── geo_borne.qml │ │ ├── geo_commune.qml │ │ ├── geo_croix.qml │ │ ├── geo_label_lieudit.qml │ │ ├── geo_label_num_voie.qml │ │ ├── geo_label_parcelle.qml │ │ ├── geo_label_parcelle_suf.qml │ │ ├── geo_label_section.qml │ │ ├── geo_label_subdfisc.qml │ │ ├── geo_label_tline.qml │ │ ├── geo_label_tpoint.qml │ │ ├── geo_label_tronfluv.qml │ │ ├── geo_label_tronroute.qml │ │ ├── geo_label_tsurf.qml │ │ ├── geo_label_voiep.qml │ │ ├── geo_label_zoncommuni.qml │ │ ├── geo_lieudit.qml │ │ ├── geo_parcelle.qml │ │ ├── geo_ptcanv.qml │ │ ├── geo_section.qml │ │ ├── geo_subdfisc.qml │ │ ├── geo_subdsect.qml │ │ ├── geo_subsection.qml │ │ ├── geo_symblim.qml │ │ ├── geo_tline.qml │ │ ├── geo_tpoint.qml │ │ ├── geo_tronfluv.qml │ │ ├── geo_tronroute.qml │ │ ├── geo_tsurf.qml │ │ ├── geo_unite_fonciere.qml │ │ ├── geo_zoncommuni.qml │ │ ├── parcelle_info.qml │ │ └── svg │ │ ├── geo_borne.svg │ │ ├── ptcanv_01.svg │ │ ├── ptcanv_02.svg │ │ ├── ptcanv_03.svg │ │ ├── ptcanv_04.svg │ │ ├── ptcanv_05.svg │ │ ├── ptcanv_06.svg │ │ ├── ptcanv_07.svg │ │ ├── ptcanv_08.svg │ │ ├── ptcanv_09.svg │ │ ├── ptcanv_10.svg │ │ ├── ptcanv_11.svg │ │ ├── ptcanv_71.svg │ │ ├── ptcanv_72.svg │ │ ├── ptcanv_73.svg │ │ ├── ptcanv_74.svg │ │ ├── ptcanv_75.svg │ │ ├── ptcanv_76.svg │ │ ├── ptcanv_77.svg │ │ ├── ptcanv_78.svg │ │ ├── ptcanv_79.svg │ │ ├── ptcanv_80.svg │ │ ├── ptcanv_81.svg │ │ ├── symblim_39.svg │ │ ├── symblim_40.svg │ │ ├── symblim_41.svg │ │ ├── symblim_42.svg │ │ ├── symblim_43.svg │ │ ├── symblim_44.svg │ │ ├── symblim_45.svg │ │ ├── symblim_46.svg │ │ ├── tpoint_12.svg │ │ ├── tpoint_30.svg │ │ ├── tpoint_47.svg │ │ ├── tpoint_48.svg │ │ ├── tpoint_49.svg │ │ ├── tpoint_50.svg │ │ ├── tpoint_63.svg │ │ ├── tpoint_98.svg │ │ ├── tsurf_51.svg │ │ ├── tsurf_52.svg │ │ └── tsurf_53.svg ├── templates │ ├── experimental.svg │ ├── footer.tpl │ ├── header1.tpl │ ├── header1.tpl.sql │ ├── header2.tpl │ ├── header3.tpl │ ├── parcelle_info_indivisions.sql │ ├── parcelle_info_locaux.sql │ ├── parcelle_info_locaux_detail.sql │ ├── parcelle_info_parcelle_majic.sql │ ├── parcelle_info_parcelle_simple.sql │ ├── parcelle_info_proprietaires.sql │ ├── parcelle_info_subdivisions.sql │ ├── parcelle_info_subdivisions_exoneration.sql │ ├── proprietaires.tpl │ ├── proprietaires_line.tpl │ ├── proprietaires_line.tpl.sql │ ├── proprietes_baties.tpl │ ├── proprietes_baties_line.tpl │ ├── proprietes_baties_line.tpl.sql │ ├── proprietes_baties_sum.tpl │ ├── proprietes_baties_sum.tpl.sql │ ├── proprietes_non_baties.tpl │ ├── proprietes_non_baties_line.tpl │ ├── proprietes_non_baties_line.tpl.sql │ ├── proprietes_non_baties_sum.tpl │ └── proprietes_non_baties_sum.tpl.sql └── tools.py ├── docs ├── changelog.md ├── contributing.md ├── database │ ├── anomalies.html │ ├── anomalies.js │ ├── bower │ │ ├── admin-lte │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── AdminLTE.css │ │ │ │ │ ├── AdminLTE.min.css │ │ │ │ │ ├── alt │ │ │ │ │ │ ├── AdminLTE-bootstrap-social.css │ │ │ │ │ │ ├── AdminLTE-bootstrap-social.min.css │ │ │ │ │ │ ├── AdminLTE-fullcalendar.css │ │ │ │ │ │ ├── AdminLTE-fullcalendar.min.css │ │ │ │ │ │ ├── AdminLTE-select2.css │ │ │ │ │ │ ├── AdminLTE-select2.min.css │ │ │ │ │ │ ├── AdminLTE-without-plugins.css │ │ │ │ │ │ └── AdminLTE-without-plugins.min.css │ │ │ │ │ └── skins │ │ │ │ │ │ ├── _all-skins.css │ │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ │ ├── skin-black-light.css │ │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ │ ├── skin-black.css │ │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ │ ├── skin-blue-light.css │ │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ │ ├── skin-blue.css │ │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ │ ├── skin-green-light.css │ │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ │ ├── skin-green.css │ │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ │ ├── skin-purple-light.css │ │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ │ ├── skin-purple.css │ │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ │ ├── skin-red-light.css │ │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ │ ├── skin-red.css │ │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ │ ├── skin-yellow-light.css │ │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ │ ├── skin-yellow.css │ │ │ │ │ │ └── skin-yellow.min.css │ │ │ │ └── js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── app.min.js │ │ │ │ │ ├── demo.js │ │ │ │ │ └── pages │ │ │ │ │ ├── dashboard.js │ │ │ │ │ └── dashboard2.js │ │ │ └── plugins │ │ │ │ ├── fastclick │ │ │ │ ├── fastclick.js │ │ │ │ └── fastclick.min.js │ │ │ │ ├── jQuery │ │ │ │ └── jquery-2.2.3.min.js │ │ │ │ ├── jQueryUI │ │ │ │ ├── jquery-ui.js │ │ │ │ └── jquery-ui.min.js │ │ │ │ └── slimScroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ └── jquery.slimscroll.min.js │ │ ├── anchor-js │ │ │ └── anchor.min.js │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ └── sql.js │ │ ├── datatables.net-bs │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ └── dataTables.bootstrap.min.js │ │ ├── datatables.net-buttons-bs │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ └── buttons.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ └── buttons.bootstrap.min.js │ │ ├── datatables.net-buttons │ │ │ ├── buttons.colVis.js │ │ │ ├── buttons.colVis.min.js │ │ │ ├── buttons.flash.js │ │ │ ├── buttons.flash.min.js │ │ │ ├── buttons.html5.js │ │ │ ├── buttons.html5.min.js │ │ │ ├── buttons.print.js │ │ │ ├── buttons.print.min.js │ │ │ ├── dataTables.buttons.js │ │ │ └── dataTables.buttons.min.js │ │ ├── datatables.net │ │ │ └── jquery.dataTables.min.js │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── html5shiv │ │ │ └── html5shiv.min.js │ │ ├── ionicons │ │ │ ├── css │ │ │ │ ├── ionicons.css │ │ │ │ └── ionicons.min.css │ │ │ └── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── js-xlsx │ │ │ └── xlsx.full.min.js │ │ ├── pdfmake │ │ │ ├── pdfmake.min.js │ │ │ └── vfs_fonts.js │ │ ├── respond │ │ │ └── respond.min.js │ │ └── salvattore │ │ │ ├── salvattore.css │ │ │ └── salvattore.min.js │ ├── column.js │ ├── columns.html │ ├── constraint.js │ ├── constraints.html │ ├── deletionOrder.txt │ ├── diagrams │ │ ├── orphans │ │ │ ├── annul.1degree.dot │ │ │ ├── annul.1degree.png │ │ │ ├── bati.1degree.dot │ │ │ ├── bati.1degree.png │ │ │ ├── carvoi.1degree.dot │ │ │ ├── carvoi.1degree.png │ │ │ ├── cbtabt.1degree.dot │ │ │ ├── cbtabt.1degree.png │ │ │ ├── ccoaff.1degree.dot │ │ │ ├── ccoaff.1degree.png │ │ │ ├── ccocac.1degree.dot │ │ │ ├── ccocac.1degree.png │ │ │ ├── ccodem.1degree.dot │ │ │ ├── ccodem.1degree.png │ │ │ ├── ccodro.1degree.dot │ │ │ ├── ccodro.1degree.png │ │ │ ├── ccoeva.1degree.dot │ │ │ ├── ccoeva.1degree.png │ │ │ ├── ccogrm.1degree.dot │ │ │ ├── ccogrm.1degree.png │ │ │ ├── ccolloc.1degree.dot │ │ │ ├── ccolloc.1degree.png │ │ │ ├── cconac.1degree.dot │ │ │ ├── cconac.1degree.png │ │ │ ├── cconad.1degree.dot │ │ │ ├── cconad.1degree.png │ │ │ ├── cconlc.1degree.dot │ │ │ ├── cconlc.1degree.png │ │ │ ├── cconlo.1degree.dot │ │ │ ├── cconlo.1degree.png │ │ │ ├── ccoplc.1degree.dot │ │ │ ├── ccoplc.1degree.png │ │ │ ├── ccoqua.1degree.dot │ │ │ ├── ccoqua.1degree.png │ │ │ ├── ccthp.1degree.dot │ │ │ ├── ccthp.1degree.png │ │ │ ├── cgrnum.1degree.dot │ │ │ ├── cgrnum.1degree.png │ │ │ ├── cnatsp.1degree.dot │ │ │ ├── cnatsp.1degree.png │ │ │ ├── commune.1degree.dot │ │ │ ├── commune.1degree.png │ │ │ ├── commune_majic.1degree.dot │ │ │ ├── commune_majic.1degree.png │ │ │ ├── comptecommunal.1degree.dot │ │ │ ├── comptecommunal.1degree.png │ │ │ ├── ctpdl.1degree.dot │ │ │ ├── ctpdl.1degree.png │ │ │ ├── detent.1degree.dot │ │ │ ├── detent.1degree.png │ │ │ ├── dformjur.1degree.dot │ │ │ ├── dformjur.1degree.png │ │ │ ├── dmatgm.1degree.dot │ │ │ ├── dmatgm.1degree.png │ │ │ ├── dmatto.1degree.dot │ │ │ ├── dmatto.1degree.png │ │ │ ├── dnatcg.1degree.dot │ │ │ ├── dnatcg.1degree.png │ │ │ ├── dnatlc.1degree.dot │ │ │ ├── dnatlc.1degree.png │ │ │ ├── dnatpr.1degree.dot │ │ │ ├── dnatpr.1degree.png │ │ │ ├── drgpos.1degree.dot │ │ │ ├── drgpos.1degree.png │ │ │ ├── dsgrpf.1degree.dot │ │ │ ├── dsgrpf.1degree.png │ │ │ ├── dteloc.1degree.dot │ │ │ ├── dteloc.1degree.png │ │ │ ├── edigeo_rel.1degree.dot │ │ │ ├── edigeo_rel.1degree.png │ │ │ ├── fanr.1degree.dot │ │ │ ├── fanr.1degree.png │ │ │ ├── fburx.1degree.dot │ │ │ ├── fburx.1degree.png │ │ │ ├── geo_batiment.1degree.dot │ │ │ ├── geo_batiment.1degree.png │ │ │ ├── geo_batiment_parcelle.1degree.dot │ │ │ ├── geo_batiment_parcelle.1degree.png │ │ │ ├── geo_borne.1degree.dot │ │ │ ├── geo_borne.1degree.png │ │ │ ├── geo_borne_parcelle.1degree.dot │ │ │ ├── geo_borne_parcelle.1degree.png │ │ │ ├── geo_can.1degree.dot │ │ │ ├── geo_can.1degree.png │ │ │ ├── geo_commune.1degree.dot │ │ │ ├── geo_commune.1degree.png │ │ │ ├── geo_copl.1degree.dot │ │ │ ├── geo_copl.1degree.png │ │ │ ├── geo_croix.1degree.dot │ │ │ ├── geo_croix.1degree.png │ │ │ ├── geo_croix_parcelle.1degree.dot │ │ │ ├── geo_croix_parcelle.1degree.png │ │ │ ├── geo_dur.1degree.dot │ │ │ ├── geo_dur.1degree.png │ │ │ ├── geo_indp.1degree.dot │ │ │ ├── geo_indp.1degree.png │ │ │ ├── geo_inp.1degree.dot │ │ │ ├── geo_inp.1degree.png │ │ │ ├── geo_label.1degree.dot │ │ │ ├── geo_label.1degree.png │ │ │ ├── geo_lieudit.1degree.dot │ │ │ ├── geo_lieudit.1degree.png │ │ │ ├── geo_map.1degree.dot │ │ │ ├── geo_map.1degree.png │ │ │ ├── geo_numvoie.1degree.dot │ │ │ ├── geo_numvoie.1degree.png │ │ │ ├── geo_numvoie_parcelle.1degree.dot │ │ │ ├── geo_numvoie_parcelle.1degree.png │ │ │ ├── geo_palt.1degree.dot │ │ │ ├── geo_palt.1degree.png │ │ │ ├── geo_parcelle.1degree.dot │ │ │ ├── geo_parcelle.1degree.png │ │ │ ├── geo_ppln.1degree.dot │ │ │ ├── geo_ppln.1degree.png │ │ │ ├── geo_ptcanv.1degree.dot │ │ │ ├── geo_ptcanv.1degree.png │ │ │ ├── geo_qupl.1degree.dot │ │ │ ├── geo_qupl.1degree.png │ │ │ ├── geo_section.1degree.dot │ │ │ ├── geo_section.1degree.png │ │ │ ├── geo_subdfisc.1degree.dot │ │ │ ├── geo_subdfisc.1degree.png │ │ │ ├── geo_subdfisc_parcelle.1degree.dot │ │ │ ├── geo_subdfisc_parcelle.1degree.png │ │ │ ├── geo_subdsect.1degree.dot │ │ │ ├── geo_subdsect.1degree.png │ │ │ ├── geo_sym.1degree.dot │ │ │ ├── geo_sym.1degree.png │ │ │ ├── geo_symblim.1degree.dot │ │ │ ├── geo_symblim.1degree.png │ │ │ ├── geo_symblim_parcelle.1degree.dot │ │ │ ├── geo_symblim_parcelle.1degree.png │ │ │ ├── geo_tline.1degree.dot │ │ │ ├── geo_tline.1degree.png │ │ │ ├── geo_tline_commune.1degree.dot │ │ │ ├── geo_tline_commune.1degree.png │ │ │ ├── geo_tpoint.1degree.dot │ │ │ ├── geo_tpoint.1degree.png │ │ │ ├── geo_tpoint_commune.1degree.dot │ │ │ ├── geo_tpoint_commune.1degree.png │ │ │ ├── geo_tronfluv.1degree.dot │ │ │ ├── geo_tronfluv.1degree.png │ │ │ ├── geo_tronroute.1degree.dot │ │ │ ├── geo_tronroute.1degree.png │ │ │ ├── geo_tsurf.1degree.dot │ │ │ ├── geo_tsurf.1degree.png │ │ │ ├── geo_tsurf_commune.1degree.dot │ │ │ ├── geo_tsurf_commune.1degree.png │ │ │ ├── geo_unite_fonciere.1degree.dot │ │ │ ├── geo_unite_fonciere.1degree.png │ │ │ ├── geo_voiep.1degree.dot │ │ │ ├── geo_voiep.1degree.png │ │ │ ├── geo_zoncommuni.1degree.dot │ │ │ ├── geo_zoncommuni.1degree.png │ │ │ ├── gimtom.1degree.dot │ │ │ ├── gimtom.1degree.png │ │ │ ├── gnexpl.1degree.dot │ │ │ ├── gnexpl.1degree.png │ │ │ ├── gnexps.1degree.dot │ │ │ ├── gnexps.1degree.png │ │ │ ├── gnextl.1degree.dot │ │ │ ├── gnextl.1degree.png │ │ │ ├── gnexts.1degree.dot │ │ │ ├── gnexts.1degree.png │ │ │ ├── gpdl.1degree.dot │ │ │ ├── gpdl.1degree.png │ │ │ ├── gtoper.1degree.dot │ │ │ ├── gtoper.1degree.png │ │ │ ├── gtyp3.1degree.dot │ │ │ ├── gtyp3.1degree.png │ │ │ ├── gtyp4.1degree.dot │ │ │ ├── gtyp4.1degree.png │ │ │ ├── gtyp5.1degree.dot │ │ │ ├── gtyp5.1degree.png │ │ │ ├── gtyp6.1degree.dot │ │ │ ├── gtyp6.1degree.png │ │ │ ├── hlmsem.1degree.dot │ │ │ ├── hlmsem.1degree.png │ │ │ ├── indldnbat.1degree.dot │ │ │ ├── indldnbat.1degree.png │ │ │ ├── lloc.1degree.dot │ │ │ ├── lloc.1degree.png │ │ │ ├── local00.1degree.dot │ │ │ ├── local00.1degree.png │ │ │ ├── local10.1degree.dot │ │ │ ├── local10.1degree.png │ │ │ ├── lots.1degree.dot │ │ │ ├── lots.1degree.png │ │ │ ├── lotslocaux.1degree.dot │ │ │ ├── lotslocaux.1degree.png │ │ │ ├── natvoi.1degree.dot │ │ │ ├── natvoi.1degree.png │ │ │ ├── natvoiriv.1degree.dot │ │ │ ├── natvoiriv.1degree.png │ │ │ ├── nbat.1degree.dot │ │ │ ├── nbat.1degree.png │ │ │ ├── parcelle.1degree.dot │ │ │ ├── parcelle.1degree.png │ │ │ ├── parcelle_info.1degree.dot │ │ │ ├── parcelle_info.1degree.png │ │ │ ├── parcellecomposante.1degree.dot │ │ │ ├── parcellecomposante.1degree.png │ │ │ ├── pdl.1degree.dot │ │ │ ├── pdl.1degree.png │ │ │ ├── pdll.1degree.dot │ │ │ ├── pdll.1degree.png │ │ │ ├── pev.1degree.dot │ │ │ ├── pev.1degree.png │ │ │ ├── pevdependances.1degree.dot │ │ │ ├── pevdependances.1degree.png │ │ │ ├── pevexoneration.1degree.dot │ │ │ ├── pevexoneration.1degree.png │ │ │ ├── pevexoneration_imposable.1degree.dot │ │ │ ├── pevexoneration_imposable.1degree.png │ │ │ ├── pevexoneration_imposee.1degree.dot │ │ │ ├── pevexoneration_imposee.1degree.png │ │ │ ├── pevlissage.1degree.dot │ │ │ ├── pevlissage.1degree.png │ │ │ ├── pevprincipale.1degree.dot │ │ │ ├── pevprincipale.1degree.png │ │ │ ├── pevprofessionnelle.1degree.dot │ │ │ ├── pevprofessionnelle.1degree.png │ │ │ ├── pevtaxation.1degree.dot │ │ │ ├── pevtaxation.1degree.png │ │ │ ├── prop.1degree.dot │ │ │ ├── prop.1degree.png │ │ │ ├── proprietaire.1degree.dot │ │ │ ├── proprietaire.1degree.png │ │ │ ├── suf.1degree.dot │ │ │ ├── suf.1degree.png │ │ │ ├── sufexoneration.1degree.dot │ │ │ ├── sufexoneration.1degree.png │ │ │ ├── suftaxation.1degree.dot │ │ │ ├── suftaxation.1degree.png │ │ │ ├── top48a.1degree.dot │ │ │ ├── top48a.1degree.png │ │ │ ├── typcom.1degree.dot │ │ │ ├── typcom.1degree.png │ │ │ ├── type_filiation.1degree.dot │ │ │ ├── type_filiation.1degree.png │ │ │ ├── typvoi.1degree.dot │ │ │ ├── typvoi.1degree.png │ │ │ ├── voie.1degree.dot │ │ │ └── voie.1degree.png │ │ ├── summary │ │ │ ├── relationships.implied.compact.dot │ │ │ ├── relationships.implied.compact.png │ │ │ ├── relationships.implied.large.dot │ │ │ └── relationships.implied.large.png │ │ └── tables │ │ │ ├── annul.1degree.dot │ │ │ ├── annul.1degree.png │ │ │ ├── annul.implied1degrees.dot │ │ │ ├── annul.implied1degrees.png │ │ │ ├── annul.implied2degrees.dot │ │ │ ├── annul.implied2degrees.png │ │ │ ├── carvoi.1degree.dot │ │ │ ├── carvoi.1degree.png │ │ │ ├── carvoi.implied1degrees.dot │ │ │ ├── carvoi.implied1degrees.png │ │ │ ├── carvoi.implied2degrees.dot │ │ │ ├── carvoi.implied2degrees.png │ │ │ ├── cbtabt.1degree.dot │ │ │ ├── cbtabt.1degree.png │ │ │ ├── cbtabt.implied1degrees.dot │ │ │ ├── cbtabt.implied1degrees.png │ │ │ ├── cbtabt.implied2degrees.dot │ │ │ ├── cbtabt.implied2degrees.png │ │ │ ├── ccoaff.1degree.dot │ │ │ ├── ccoaff.1degree.png │ │ │ ├── ccoaff.implied1degrees.dot │ │ │ ├── ccoaff.implied1degrees.png │ │ │ ├── ccoaff.implied2degrees.dot │ │ │ ├── ccoaff.implied2degrees.png │ │ │ ├── ccocac.1degree.dot │ │ │ ├── ccocac.1degree.png │ │ │ ├── ccocac.implied1degrees.dot │ │ │ ├── ccocac.implied1degrees.png │ │ │ ├── ccocac.implied2degrees.dot │ │ │ ├── ccocac.implied2degrees.png │ │ │ ├── ccodem.1degree.dot │ │ │ ├── ccodem.1degree.png │ │ │ ├── ccodem.implied1degrees.dot │ │ │ ├── ccodem.implied1degrees.png │ │ │ ├── ccodem.implied2degrees.dot │ │ │ ├── ccodem.implied2degrees.png │ │ │ ├── ccodro.1degree.dot │ │ │ ├── ccodro.1degree.png │ │ │ ├── ccodro.implied1degrees.dot │ │ │ ├── ccodro.implied1degrees.png │ │ │ ├── ccodro.implied2degrees.dot │ │ │ ├── ccodro.implied2degrees.png │ │ │ ├── ccoeva.1degree.dot │ │ │ ├── ccoeva.1degree.png │ │ │ ├── ccoeva.implied1degrees.dot │ │ │ ├── ccoeva.implied1degrees.png │ │ │ ├── ccoeva.implied2degrees.dot │ │ │ ├── ccoeva.implied2degrees.png │ │ │ ├── ccogrm.1degree.dot │ │ │ ├── ccogrm.1degree.png │ │ │ ├── ccogrm.implied1degrees.dot │ │ │ ├── ccogrm.implied1degrees.png │ │ │ ├── ccogrm.implied2degrees.dot │ │ │ ├── ccogrm.implied2degrees.png │ │ │ ├── ccolloc.1degree.dot │ │ │ ├── ccolloc.1degree.png │ │ │ ├── ccolloc.implied1degrees.dot │ │ │ ├── ccolloc.implied1degrees.png │ │ │ ├── ccolloc.implied2degrees.dot │ │ │ ├── ccolloc.implied2degrees.png │ │ │ ├── cconac.1degree.dot │ │ │ ├── cconac.1degree.png │ │ │ ├── cconac.implied1degrees.dot │ │ │ ├── cconac.implied1degrees.png │ │ │ ├── cconac.implied2degrees.dot │ │ │ ├── cconac.implied2degrees.png │ │ │ ├── cconad.1degree.dot │ │ │ ├── cconad.1degree.png │ │ │ ├── cconad.implied1degrees.dot │ │ │ ├── cconad.implied1degrees.png │ │ │ ├── cconad.implied2degrees.dot │ │ │ ├── cconad.implied2degrees.png │ │ │ ├── cconlc.1degree.dot │ │ │ ├── cconlc.1degree.png │ │ │ ├── cconlc.implied1degrees.dot │ │ │ ├── cconlc.implied1degrees.png │ │ │ ├── cconlc.implied2degrees.dot │ │ │ ├── cconlc.implied2degrees.png │ │ │ ├── cconlo.1degree.dot │ │ │ ├── cconlo.1degree.png │ │ │ ├── cconlo.implied1degrees.dot │ │ │ ├── cconlo.implied1degrees.png │ │ │ ├── cconlo.implied2degrees.dot │ │ │ ├── cconlo.implied2degrees.png │ │ │ ├── ccoplc.1degree.dot │ │ │ ├── ccoplc.1degree.png │ │ │ ├── ccoplc.implied1degrees.dot │ │ │ ├── ccoplc.implied1degrees.png │ │ │ ├── ccoplc.implied2degrees.dot │ │ │ ├── ccoplc.implied2degrees.png │ │ │ ├── ccoqua.1degree.dot │ │ │ ├── ccoqua.1degree.png │ │ │ ├── ccoqua.implied1degrees.dot │ │ │ ├── ccoqua.implied1degrees.png │ │ │ ├── ccoqua.implied2degrees.dot │ │ │ ├── ccoqua.implied2degrees.png │ │ │ ├── ccthp.1degree.dot │ │ │ ├── ccthp.1degree.png │ │ │ ├── ccthp.implied1degrees.dot │ │ │ ├── ccthp.implied1degrees.png │ │ │ ├── ccthp.implied2degrees.dot │ │ │ ├── ccthp.implied2degrees.png │ │ │ ├── cgrnum.1degree.dot │ │ │ ├── cgrnum.1degree.png │ │ │ ├── cgrnum.implied1degrees.dot │ │ │ ├── cgrnum.implied1degrees.png │ │ │ ├── cgrnum.implied2degrees.dot │ │ │ ├── cgrnum.implied2degrees.png │ │ │ ├── cnatsp.1degree.dot │ │ │ ├── cnatsp.1degree.png │ │ │ ├── cnatsp.implied1degrees.dot │ │ │ ├── cnatsp.implied1degrees.png │ │ │ ├── cnatsp.implied2degrees.dot │ │ │ ├── cnatsp.implied2degrees.png │ │ │ ├── commune.1degree.dot │ │ │ ├── commune.1degree.png │ │ │ ├── commune.implied1degrees.dot │ │ │ ├── commune.implied1degrees.png │ │ │ ├── commune.implied2degrees.dot │ │ │ ├── commune.implied2degrees.png │ │ │ ├── comptecommunal.1degree.dot │ │ │ ├── comptecommunal.1degree.png │ │ │ ├── comptecommunal.implied1degrees.dot │ │ │ ├── comptecommunal.implied1degrees.png │ │ │ ├── comptecommunal.implied2degrees.dot │ │ │ ├── comptecommunal.implied2degrees.png │ │ │ ├── ctpdl.1degree.dot │ │ │ ├── ctpdl.1degree.png │ │ │ ├── ctpdl.implied1degrees.dot │ │ │ ├── ctpdl.implied1degrees.png │ │ │ ├── ctpdl.implied2degrees.dot │ │ │ ├── ctpdl.implied2degrees.png │ │ │ ├── detent.1degree.dot │ │ │ ├── detent.1degree.png │ │ │ ├── detent.implied1degrees.dot │ │ │ ├── detent.implied1degrees.png │ │ │ ├── detent.implied2degrees.dot │ │ │ ├── detent.implied2degrees.png │ │ │ ├── dformjur.1degree.dot │ │ │ ├── dformjur.1degree.png │ │ │ ├── dformjur.implied1degrees.dot │ │ │ ├── dformjur.implied1degrees.png │ │ │ ├── dformjur.implied2degrees.dot │ │ │ ├── dformjur.implied2degrees.png │ │ │ ├── dmatgm.1degree.dot │ │ │ ├── dmatgm.1degree.png │ │ │ ├── dmatgm.implied1degrees.dot │ │ │ ├── dmatgm.implied1degrees.png │ │ │ ├── dmatgm.implied2degrees.dot │ │ │ ├── dmatgm.implied2degrees.png │ │ │ ├── dmatto.1degree.dot │ │ │ ├── dmatto.1degree.png │ │ │ ├── dmatto.implied1degrees.dot │ │ │ ├── dmatto.implied1degrees.png │ │ │ ├── dmatto.implied2degrees.dot │ │ │ ├── dmatto.implied2degrees.png │ │ │ ├── dnatcg.1degree.dot │ │ │ ├── dnatcg.1degree.png │ │ │ ├── dnatcg.implied1degrees.dot │ │ │ ├── dnatcg.implied1degrees.png │ │ │ ├── dnatcg.implied2degrees.dot │ │ │ ├── dnatcg.implied2degrees.png │ │ │ ├── dnatlc.1degree.dot │ │ │ ├── dnatlc.1degree.png │ │ │ ├── dnatlc.implied1degrees.dot │ │ │ ├── dnatlc.implied1degrees.png │ │ │ ├── dnatlc.implied2degrees.dot │ │ │ ├── dnatlc.implied2degrees.png │ │ │ ├── dnatpr.1degree.dot │ │ │ ├── dnatpr.1degree.png │ │ │ ├── dnatpr.implied1degrees.dot │ │ │ ├── dnatpr.implied1degrees.png │ │ │ ├── dnatpr.implied2degrees.dot │ │ │ ├── dnatpr.implied2degrees.png │ │ │ ├── dsgrpf.1degree.dot │ │ │ ├── dsgrpf.1degree.png │ │ │ ├── dsgrpf.implied1degrees.dot │ │ │ ├── dsgrpf.implied1degrees.png │ │ │ ├── dsgrpf.implied2degrees.dot │ │ │ ├── dsgrpf.implied2degrees.png │ │ │ ├── dteloc.1degree.dot │ │ │ ├── dteloc.1degree.png │ │ │ ├── dteloc.implied1degrees.dot │ │ │ ├── dteloc.implied1degrees.png │ │ │ ├── dteloc.implied2degrees.dot │ │ │ ├── dteloc.implied2degrees.png │ │ │ ├── geo_batiment.1degree.dot │ │ │ ├── geo_batiment.1degree.png │ │ │ ├── geo_batiment.implied1degrees.dot │ │ │ ├── geo_batiment.implied1degrees.png │ │ │ ├── geo_batiment.implied2degrees.dot │ │ │ ├── geo_batiment.implied2degrees.png │ │ │ ├── geo_batiment_parcelle.1degree.dot │ │ │ ├── geo_batiment_parcelle.1degree.png │ │ │ ├── geo_batiment_parcelle.implied1degrees.dot │ │ │ ├── geo_batiment_parcelle.implied1degrees.png │ │ │ ├── geo_batiment_parcelle.implied2degrees.dot │ │ │ ├── geo_batiment_parcelle.implied2degrees.png │ │ │ ├── geo_borne.1degree.dot │ │ │ ├── geo_borne.1degree.png │ │ │ ├── geo_borne.implied1degrees.dot │ │ │ ├── geo_borne.implied1degrees.png │ │ │ ├── geo_borne.implied2degrees.dot │ │ │ ├── geo_borne.implied2degrees.png │ │ │ ├── geo_borne_parcelle.1degree.dot │ │ │ ├── geo_borne_parcelle.1degree.png │ │ │ ├── geo_borne_parcelle.implied1degrees.dot │ │ │ ├── geo_borne_parcelle.implied1degrees.png │ │ │ ├── geo_borne_parcelle.implied2degrees.dot │ │ │ ├── geo_borne_parcelle.implied2degrees.png │ │ │ ├── geo_can.1degree.dot │ │ │ ├── geo_can.1degree.png │ │ │ ├── geo_can.implied1degrees.dot │ │ │ ├── geo_can.implied1degrees.png │ │ │ ├── geo_can.implied2degrees.dot │ │ │ ├── geo_can.implied2degrees.png │ │ │ ├── geo_copl.1degree.dot │ │ │ ├── geo_copl.1degree.png │ │ │ ├── geo_copl.implied1degrees.dot │ │ │ ├── geo_copl.implied1degrees.png │ │ │ ├── geo_copl.implied2degrees.dot │ │ │ ├── geo_copl.implied2degrees.png │ │ │ ├── geo_croix.1degree.dot │ │ │ ├── geo_croix.1degree.png │ │ │ ├── geo_croix.implied1degrees.dot │ │ │ ├── geo_croix.implied1degrees.png │ │ │ ├── geo_croix.implied2degrees.dot │ │ │ ├── geo_croix.implied2degrees.png │ │ │ ├── geo_croix_parcelle.1degree.dot │ │ │ ├── geo_croix_parcelle.1degree.png │ │ │ ├── geo_croix_parcelle.implied1degrees.dot │ │ │ ├── geo_croix_parcelle.implied1degrees.png │ │ │ ├── geo_croix_parcelle.implied2degrees.dot │ │ │ ├── geo_croix_parcelle.implied2degrees.png │ │ │ ├── geo_dur.1degree.dot │ │ │ ├── geo_dur.1degree.png │ │ │ ├── geo_dur.implied1degrees.dot │ │ │ ├── geo_dur.implied1degrees.png │ │ │ ├── geo_dur.implied2degrees.dot │ │ │ ├── geo_dur.implied2degrees.png │ │ │ ├── geo_indp.1degree.dot │ │ │ ├── geo_indp.1degree.png │ │ │ ├── geo_indp.implied1degrees.dot │ │ │ ├── geo_indp.implied1degrees.png │ │ │ ├── geo_indp.implied2degrees.dot │ │ │ ├── geo_indp.implied2degrees.png │ │ │ ├── geo_inp.1degree.dot │ │ │ ├── geo_inp.1degree.png │ │ │ ├── geo_inp.implied1degrees.dot │ │ │ ├── geo_inp.implied1degrees.png │ │ │ ├── geo_inp.implied2degrees.dot │ │ │ ├── geo_inp.implied2degrees.png │ │ │ ├── geo_map.1degree.dot │ │ │ ├── geo_map.1degree.png │ │ │ ├── geo_map.implied1degrees.dot │ │ │ ├── geo_map.implied1degrees.png │ │ │ ├── geo_map.implied2degrees.dot │ │ │ ├── geo_map.implied2degrees.png │ │ │ ├── geo_numvoie.1degree.dot │ │ │ ├── geo_numvoie.1degree.png │ │ │ ├── geo_numvoie.implied1degrees.dot │ │ │ ├── geo_numvoie.implied1degrees.png │ │ │ ├── geo_numvoie.implied2degrees.dot │ │ │ ├── geo_numvoie.implied2degrees.png │ │ │ ├── geo_numvoie_parcelle.1degree.dot │ │ │ ├── geo_numvoie_parcelle.1degree.png │ │ │ ├── geo_numvoie_parcelle.implied1degrees.dot │ │ │ ├── geo_numvoie_parcelle.implied1degrees.png │ │ │ ├── geo_numvoie_parcelle.implied2degrees.dot │ │ │ ├── geo_numvoie_parcelle.implied2degrees.png │ │ │ ├── geo_palt.1degree.dot │ │ │ ├── geo_palt.1degree.png │ │ │ ├── geo_palt.implied1degrees.dot │ │ │ ├── geo_palt.implied1degrees.png │ │ │ ├── geo_palt.implied2degrees.dot │ │ │ ├── geo_palt.implied2degrees.png │ │ │ ├── geo_parcelle.1degree.dot │ │ │ ├── geo_parcelle.1degree.png │ │ │ ├── geo_parcelle.implied1degrees.dot │ │ │ ├── geo_parcelle.implied1degrees.png │ │ │ ├── geo_parcelle.implied2degrees.dot │ │ │ ├── geo_parcelle.implied2degrees.png │ │ │ ├── geo_ppln.1degree.dot │ │ │ ├── geo_ppln.1degree.png │ │ │ ├── geo_ppln.implied1degrees.dot │ │ │ ├── geo_ppln.implied1degrees.png │ │ │ ├── geo_ppln.implied2degrees.dot │ │ │ ├── geo_ppln.implied2degrees.png │ │ │ ├── geo_ptcanv.1degree.dot │ │ │ ├── geo_ptcanv.1degree.png │ │ │ ├── geo_ptcanv.implied1degrees.dot │ │ │ ├── geo_ptcanv.implied1degrees.png │ │ │ ├── geo_ptcanv.implied2degrees.dot │ │ │ ├── geo_ptcanv.implied2degrees.png │ │ │ ├── geo_qupl.1degree.dot │ │ │ ├── geo_qupl.1degree.png │ │ │ ├── geo_qupl.implied1degrees.dot │ │ │ ├── geo_qupl.implied1degrees.png │ │ │ ├── geo_qupl.implied2degrees.dot │ │ │ ├── geo_qupl.implied2degrees.png │ │ │ ├── geo_subdfisc.1degree.dot │ │ │ ├── geo_subdfisc.1degree.png │ │ │ ├── geo_subdfisc.implied1degrees.dot │ │ │ ├── geo_subdfisc.implied1degrees.png │ │ │ ├── geo_subdfisc.implied2degrees.dot │ │ │ ├── geo_subdfisc.implied2degrees.png │ │ │ ├── geo_subdfisc_parcelle.1degree.dot │ │ │ ├── geo_subdfisc_parcelle.1degree.png │ │ │ ├── geo_subdfisc_parcelle.implied1degrees.dot │ │ │ ├── geo_subdfisc_parcelle.implied1degrees.png │ │ │ ├── geo_subdfisc_parcelle.implied2degrees.dot │ │ │ ├── geo_subdfisc_parcelle.implied2degrees.png │ │ │ ├── geo_subdsect.1degree.dot │ │ │ ├── geo_subdsect.1degree.png │ │ │ ├── geo_subdsect.implied1degrees.dot │ │ │ ├── geo_subdsect.implied1degrees.png │ │ │ ├── geo_subdsect.implied2degrees.dot │ │ │ ├── geo_subdsect.implied2degrees.png │ │ │ ├── geo_sym.1degree.dot │ │ │ ├── geo_sym.1degree.png │ │ │ ├── geo_sym.implied1degrees.dot │ │ │ ├── geo_sym.implied1degrees.png │ │ │ ├── geo_sym.implied2degrees.dot │ │ │ ├── geo_sym.implied2degrees.png │ │ │ ├── geo_symblim.1degree.dot │ │ │ ├── geo_symblim.1degree.png │ │ │ ├── geo_symblim.implied1degrees.dot │ │ │ ├── geo_symblim.implied1degrees.png │ │ │ ├── geo_symblim.implied2degrees.dot │ │ │ ├── geo_symblim.implied2degrees.png │ │ │ ├── geo_symblim_parcelle.1degree.dot │ │ │ ├── geo_symblim_parcelle.1degree.png │ │ │ ├── geo_symblim_parcelle.implied1degrees.dot │ │ │ ├── geo_symblim_parcelle.implied1degrees.png │ │ │ ├── geo_symblim_parcelle.implied2degrees.dot │ │ │ ├── geo_symblim_parcelle.implied2degrees.png │ │ │ ├── geo_tline.1degree.dot │ │ │ ├── geo_tline.1degree.png │ │ │ ├── geo_tline.implied1degrees.dot │ │ │ ├── geo_tline.implied1degrees.png │ │ │ ├── geo_tline.implied2degrees.dot │ │ │ ├── geo_tline.implied2degrees.png │ │ │ ├── geo_tline_commune.1degree.dot │ │ │ ├── geo_tline_commune.1degree.png │ │ │ ├── geo_tline_commune.implied1degrees.dot │ │ │ ├── geo_tline_commune.implied1degrees.png │ │ │ ├── geo_tline_commune.implied2degrees.dot │ │ │ ├── geo_tline_commune.implied2degrees.png │ │ │ ├── geo_tpoint.1degree.dot │ │ │ ├── geo_tpoint.1degree.png │ │ │ ├── geo_tpoint.implied1degrees.dot │ │ │ ├── geo_tpoint.implied1degrees.png │ │ │ ├── geo_tpoint.implied2degrees.dot │ │ │ ├── geo_tpoint.implied2degrees.png │ │ │ ├── geo_tpoint_commune.1degree.dot │ │ │ ├── geo_tpoint_commune.1degree.png │ │ │ ├── geo_tpoint_commune.implied1degrees.dot │ │ │ ├── geo_tpoint_commune.implied1degrees.png │ │ │ ├── geo_tpoint_commune.implied2degrees.dot │ │ │ ├── geo_tpoint_commune.implied2degrees.png │ │ │ ├── geo_tsurf.1degree.dot │ │ │ ├── geo_tsurf.1degree.png │ │ │ ├── geo_tsurf.implied1degrees.dot │ │ │ ├── geo_tsurf.implied1degrees.png │ │ │ ├── geo_tsurf.implied2degrees.dot │ │ │ ├── geo_tsurf.implied2degrees.png │ │ │ ├── geo_tsurf_commune.1degree.dot │ │ │ ├── geo_tsurf_commune.1degree.png │ │ │ ├── geo_tsurf_commune.implied1degrees.dot │ │ │ ├── geo_tsurf_commune.implied1degrees.png │ │ │ ├── geo_tsurf_commune.implied2degrees.dot │ │ │ ├── geo_tsurf_commune.implied2degrees.png │ │ │ ├── geo_unite_fonciere.1degree.dot │ │ │ ├── geo_unite_fonciere.1degree.png │ │ │ ├── geo_unite_fonciere.implied1degrees.dot │ │ │ ├── geo_unite_fonciere.implied1degrees.png │ │ │ ├── geo_unite_fonciere.implied2degrees.dot │ │ │ ├── geo_unite_fonciere.implied2degrees.png │ │ │ ├── gimtom.1degree.dot │ │ │ ├── gimtom.1degree.png │ │ │ ├── gimtom.implied1degrees.dot │ │ │ ├── gimtom.implied1degrees.png │ │ │ ├── gimtom.implied2degrees.dot │ │ │ ├── gimtom.implied2degrees.png │ │ │ ├── gnexpl.1degree.dot │ │ │ ├── gnexpl.1degree.png │ │ │ ├── gnexpl.implied1degrees.dot │ │ │ ├── gnexpl.implied1degrees.png │ │ │ ├── gnexpl.implied2degrees.dot │ │ │ ├── gnexpl.implied2degrees.png │ │ │ ├── gnexps.1degree.dot │ │ │ ├── gnexps.1degree.png │ │ │ ├── gnexps.implied1degrees.dot │ │ │ ├── gnexps.implied1degrees.png │ │ │ ├── gnexps.implied2degrees.dot │ │ │ ├── gnexps.implied2degrees.png │ │ │ ├── gnextl.1degree.dot │ │ │ ├── gnextl.1degree.png │ │ │ ├── gnextl.implied1degrees.dot │ │ │ ├── gnextl.implied1degrees.png │ │ │ ├── gnextl.implied2degrees.dot │ │ │ ├── gnextl.implied2degrees.png │ │ │ ├── gnexts.1degree.dot │ │ │ ├── gnexts.1degree.png │ │ │ ├── gnexts.implied1degrees.dot │ │ │ ├── gnexts.implied1degrees.png │ │ │ ├── gnexts.implied2degrees.dot │ │ │ ├── gnexts.implied2degrees.png │ │ │ ├── gpdl.1degree.dot │ │ │ ├── gpdl.1degree.png │ │ │ ├── gpdl.implied1degrees.dot │ │ │ ├── gpdl.implied1degrees.png │ │ │ ├── gpdl.implied2degrees.dot │ │ │ ├── gpdl.implied2degrees.png │ │ │ ├── gtoper.1degree.dot │ │ │ ├── gtoper.1degree.png │ │ │ ├── gtoper.implied1degrees.dot │ │ │ ├── gtoper.implied1degrees.png │ │ │ ├── gtoper.implied2degrees.dot │ │ │ ├── gtoper.implied2degrees.png │ │ │ ├── gtyp3.1degree.dot │ │ │ ├── gtyp3.1degree.png │ │ │ ├── gtyp3.implied1degrees.dot │ │ │ ├── gtyp3.implied1degrees.png │ │ │ ├── gtyp3.implied2degrees.dot │ │ │ ├── gtyp3.implied2degrees.png │ │ │ ├── gtyp4.1degree.dot │ │ │ ├── gtyp4.1degree.png │ │ │ ├── gtyp4.implied1degrees.dot │ │ │ ├── gtyp4.implied1degrees.png │ │ │ ├── gtyp4.implied2degrees.dot │ │ │ ├── gtyp4.implied2degrees.png │ │ │ ├── gtyp5.1degree.dot │ │ │ ├── gtyp5.1degree.png │ │ │ ├── gtyp5.implied1degrees.dot │ │ │ ├── gtyp5.implied1degrees.png │ │ │ ├── gtyp5.implied2degrees.dot │ │ │ ├── gtyp5.implied2degrees.png │ │ │ ├── gtyp6.1degree.dot │ │ │ ├── gtyp6.1degree.png │ │ │ ├── gtyp6.implied1degrees.dot │ │ │ ├── gtyp6.implied1degrees.png │ │ │ ├── gtyp6.implied2degrees.dot │ │ │ ├── gtyp6.implied2degrees.png │ │ │ ├── hlmsem.1degree.dot │ │ │ ├── hlmsem.1degree.png │ │ │ ├── hlmsem.implied1degrees.dot │ │ │ ├── hlmsem.implied1degrees.png │ │ │ ├── hlmsem.implied2degrees.dot │ │ │ ├── hlmsem.implied2degrees.png │ │ │ ├── indldnbat.1degree.dot │ │ │ ├── indldnbat.1degree.png │ │ │ ├── indldnbat.implied1degrees.dot │ │ │ ├── indldnbat.implied1degrees.png │ │ │ ├── indldnbat.implied2degrees.dot │ │ │ ├── indldnbat.implied2degrees.png │ │ │ ├── local00.1degree.dot │ │ │ ├── local00.1degree.png │ │ │ ├── local00.implied1degrees.dot │ │ │ ├── local00.implied1degrees.png │ │ │ ├── local00.implied2degrees.dot │ │ │ ├── local00.implied2degrees.png │ │ │ ├── local10.1degree.dot │ │ │ ├── local10.1degree.png │ │ │ ├── local10.implied1degrees.dot │ │ │ ├── local10.implied1degrees.png │ │ │ ├── local10.implied2degrees.dot │ │ │ ├── local10.implied2degrees.png │ │ │ ├── lots.1degree.dot │ │ │ ├── lots.1degree.png │ │ │ ├── lots.implied1degrees.dot │ │ │ ├── lots.implied1degrees.png │ │ │ ├── lots.implied2degrees.dot │ │ │ ├── lots.implied2degrees.png │ │ │ ├── lotslocaux.1degree.dot │ │ │ ├── lotslocaux.1degree.png │ │ │ ├── lotslocaux.implied1degrees.dot │ │ │ ├── lotslocaux.implied1degrees.png │ │ │ ├── lotslocaux.implied2degrees.dot │ │ │ ├── lotslocaux.implied2degrees.png │ │ │ ├── natvoi.1degree.dot │ │ │ ├── natvoi.1degree.png │ │ │ ├── natvoi.implied1degrees.dot │ │ │ ├── natvoi.implied1degrees.png │ │ │ ├── natvoi.implied2degrees.dot │ │ │ ├── natvoi.implied2degrees.png │ │ │ ├── natvoiriv.1degree.dot │ │ │ ├── natvoiriv.1degree.png │ │ │ ├── natvoiriv.implied1degrees.dot │ │ │ ├── natvoiriv.implied1degrees.png │ │ │ ├── natvoiriv.implied2degrees.dot │ │ │ ├── natvoiriv.implied2degrees.png │ │ │ ├── parcelle.1degree.dot │ │ │ ├── parcelle.1degree.png │ │ │ ├── parcelle.implied1degrees.dot │ │ │ ├── parcelle.implied1degrees.png │ │ │ ├── parcelle.implied2degrees.dot │ │ │ ├── parcelle.implied2degrees.png │ │ │ ├── parcelle_info.1degree.dot │ │ │ ├── parcelle_info.1degree.png │ │ │ ├── parcelle_info.implied1degrees.dot │ │ │ ├── parcelle_info.implied1degrees.png │ │ │ ├── parcelle_info.implied2degrees.dot │ │ │ ├── parcelle_info.implied2degrees.png │ │ │ ├── parcellecomposante.1degree.dot │ │ │ ├── parcellecomposante.1degree.png │ │ │ ├── parcellecomposante.implied1degrees.dot │ │ │ ├── parcellecomposante.implied1degrees.png │ │ │ ├── parcellecomposante.implied2degrees.dot │ │ │ ├── parcellecomposante.implied2degrees.png │ │ │ ├── pdl.1degree.dot │ │ │ ├── pdl.1degree.png │ │ │ ├── pdl.implied1degrees.dot │ │ │ ├── pdl.implied1degrees.png │ │ │ ├── pdl.implied2degrees.dot │ │ │ ├── pdl.implied2degrees.png │ │ │ ├── pev.1degree.dot │ │ │ ├── pev.1degree.png │ │ │ ├── pev.implied1degrees.dot │ │ │ ├── pev.implied1degrees.png │ │ │ ├── pev.implied2degrees.dot │ │ │ ├── pev.implied2degrees.png │ │ │ ├── pevdependances.1degree.dot │ │ │ ├── pevdependances.1degree.png │ │ │ ├── pevdependances.implied1degrees.dot │ │ │ ├── pevdependances.implied1degrees.png │ │ │ ├── pevdependances.implied2degrees.dot │ │ │ ├── pevdependances.implied2degrees.png │ │ │ ├── pevexoneration.1degree.dot │ │ │ ├── pevexoneration.1degree.png │ │ │ ├── pevexoneration.implied1degrees.dot │ │ │ ├── pevexoneration.implied1degrees.png │ │ │ ├── pevexoneration.implied2degrees.dot │ │ │ ├── pevexoneration.implied2degrees.png │ │ │ ├── pevexoneration_imposable.1degree.dot │ │ │ ├── pevexoneration_imposable.1degree.png │ │ │ ├── pevexoneration_imposable.implied1degrees.dot │ │ │ ├── pevexoneration_imposable.implied1degrees.png │ │ │ ├── pevexoneration_imposable.implied2degrees.dot │ │ │ ├── pevexoneration_imposable.implied2degrees.png │ │ │ ├── pevexoneration_imposee.1degree.dot │ │ │ ├── pevexoneration_imposee.1degree.png │ │ │ ├── pevexoneration_imposee.implied1degrees.dot │ │ │ ├── pevexoneration_imposee.implied1degrees.png │ │ │ ├── pevexoneration_imposee.implied2degrees.dot │ │ │ ├── pevexoneration_imposee.implied2degrees.png │ │ │ ├── pevlissage.1degree.dot │ │ │ ├── pevlissage.1degree.png │ │ │ ├── pevlissage.implied1degrees.dot │ │ │ ├── pevlissage.implied1degrees.png │ │ │ ├── pevlissage.implied2degrees.dot │ │ │ ├── pevlissage.implied2degrees.png │ │ │ ├── pevprincipale.1degree.dot │ │ │ ├── pevprincipale.1degree.png │ │ │ ├── pevprincipale.implied1degrees.dot │ │ │ ├── pevprincipale.implied1degrees.png │ │ │ ├── pevprincipale.implied2degrees.dot │ │ │ ├── pevprincipale.implied2degrees.png │ │ │ ├── pevprofessionnelle.1degree.dot │ │ │ ├── pevprofessionnelle.1degree.png │ │ │ ├── pevprofessionnelle.implied1degrees.dot │ │ │ ├── pevprofessionnelle.implied1degrees.png │ │ │ ├── pevprofessionnelle.implied2degrees.dot │ │ │ ├── pevprofessionnelle.implied2degrees.png │ │ │ ├── pevtaxation.1degree.dot │ │ │ ├── pevtaxation.1degree.png │ │ │ ├── pevtaxation.implied1degrees.dot │ │ │ ├── pevtaxation.implied1degrees.png │ │ │ ├── pevtaxation.implied2degrees.dot │ │ │ ├── pevtaxation.implied2degrees.png │ │ │ ├── proprietaire.1degree.dot │ │ │ ├── proprietaire.1degree.png │ │ │ ├── proprietaire.implied1degrees.dot │ │ │ ├── proprietaire.implied1degrees.png │ │ │ ├── proprietaire.implied2degrees.dot │ │ │ ├── proprietaire.implied2degrees.png │ │ │ ├── suf.1degree.dot │ │ │ ├── suf.1degree.png │ │ │ ├── suf.implied1degrees.dot │ │ │ ├── suf.implied1degrees.png │ │ │ ├── suf.implied2degrees.dot │ │ │ ├── suf.implied2degrees.png │ │ │ ├── sufexoneration.1degree.dot │ │ │ ├── sufexoneration.1degree.png │ │ │ ├── sufexoneration.implied1degrees.dot │ │ │ ├── sufexoneration.implied1degrees.png │ │ │ ├── sufexoneration.implied2degrees.dot │ │ │ ├── sufexoneration.implied2degrees.png │ │ │ ├── suftaxation.1degree.dot │ │ │ ├── suftaxation.1degree.png │ │ │ ├── suftaxation.implied1degrees.dot │ │ │ ├── suftaxation.implied1degrees.png │ │ │ ├── suftaxation.implied2degrees.dot │ │ │ ├── suftaxation.implied2degrees.png │ │ │ ├── top48a.1degree.dot │ │ │ ├── top48a.1degree.png │ │ │ ├── top48a.implied1degrees.dot │ │ │ ├── top48a.implied1degrees.png │ │ │ ├── top48a.implied2degrees.dot │ │ │ ├── top48a.implied2degrees.png │ │ │ ├── typcom.1degree.dot │ │ │ ├── typcom.1degree.png │ │ │ ├── typcom.implied1degrees.dot │ │ │ ├── typcom.implied1degrees.png │ │ │ ├── typcom.implied2degrees.dot │ │ │ ├── typcom.implied2degrees.png │ │ │ ├── type_filiation.1degree.dot │ │ │ ├── type_filiation.1degree.png │ │ │ ├── type_filiation.implied1degrees.dot │ │ │ ├── type_filiation.implied1degrees.png │ │ │ ├── type_filiation.implied2degrees.dot │ │ │ ├── type_filiation.implied2degrees.png │ │ │ ├── typvoi.1degree.dot │ │ │ ├── typvoi.1degree.png │ │ │ ├── typvoi.implied1degrees.dot │ │ │ ├── typvoi.implied1degrees.png │ │ │ ├── typvoi.implied2degrees.dot │ │ │ ├── typvoi.implied2degrees.png │ │ │ ├── v_geo_parcelle.1degree.dot │ │ │ ├── v_geo_parcelle.1degree.png │ │ │ ├── v_geo_parcelle.implied1degrees.dot │ │ │ ├── v_geo_parcelle.implied1degrees.png │ │ │ ├── v_geo_parcelle.implied2degrees.dot │ │ │ ├── v_geo_parcelle.implied2degrees.png │ │ │ ├── voie.1degree.dot │ │ │ ├── voie.1degree.png │ │ │ ├── voie.implied1degrees.dot │ │ │ ├── voie.implied1degrees.png │ │ │ ├── voie.implied2degrees.dot │ │ │ └── voie.implied2degrees.png │ ├── favicon.png │ ├── fonts │ │ ├── indieflower │ │ │ ├── indie-flower-v8-latin-regular.eot │ │ │ ├── indie-flower-v8-latin-regular.svg │ │ │ ├── indie-flower-v8-latin-regular.ttf │ │ │ ├── indie-flower-v8-latin-regular.woff │ │ │ ├── indie-flower-v8-latin-regular.woff2 │ │ │ └── indie-flower.css │ │ └── source-sans-pro │ │ │ ├── source-sans-pro-v10-latin-300.eot │ │ │ ├── source-sans-pro-v10-latin-300.svg │ │ │ ├── source-sans-pro-v10-latin-300.ttf │ │ │ ├── source-sans-pro-v10-latin-300.woff │ │ │ ├── source-sans-pro-v10-latin-300.woff2 │ │ │ ├── source-sans-pro-v10-latin-300italic.eot │ │ │ ├── source-sans-pro-v10-latin-300italic.svg │ │ │ ├── source-sans-pro-v10-latin-300italic.ttf │ │ │ ├── source-sans-pro-v10-latin-300italic.woff │ │ │ ├── source-sans-pro-v10-latin-300italic.woff2 │ │ │ ├── source-sans-pro-v10-latin-600.eot │ │ │ ├── source-sans-pro-v10-latin-600.svg │ │ │ ├── source-sans-pro-v10-latin-600.ttf │ │ │ ├── source-sans-pro-v10-latin-600.woff │ │ │ ├── source-sans-pro-v10-latin-600.woff2 │ │ │ ├── source-sans-pro-v10-latin-600italic.eot │ │ │ ├── source-sans-pro-v10-latin-600italic.svg │ │ │ ├── source-sans-pro-v10-latin-600italic.ttf │ │ │ ├── source-sans-pro-v10-latin-600italic.woff │ │ │ ├── source-sans-pro-v10-latin-600italic.woff2 │ │ │ ├── source-sans-pro-v10-latin-700.eot │ │ │ ├── source-sans-pro-v10-latin-700.svg │ │ │ ├── source-sans-pro-v10-latin-700.ttf │ │ │ ├── source-sans-pro-v10-latin-700.woff │ │ │ ├── source-sans-pro-v10-latin-700.woff2 │ │ │ ├── source-sans-pro-v10-latin-regular.eot │ │ │ ├── source-sans-pro-v10-latin-regular.svg │ │ │ ├── source-sans-pro-v10-latin-regular.ttf │ │ │ ├── source-sans-pro-v10-latin-regular.woff │ │ │ ├── source-sans-pro-v10-latin-regular.woff2 │ │ │ └── source-sans-pro.css │ ├── images │ │ ├── foreignKey.png │ │ ├── foreignKeys.png │ │ ├── primaryKey.png │ │ └── primaryKeys.png │ ├── index.html │ ├── info-html.txt │ ├── insertionOrder.txt │ ├── main.js │ ├── orphans.html │ ├── qgistest.cadastre.xml │ ├── relationships.html │ ├── relationships.js │ ├── routines.html │ ├── routines.js │ ├── routines │ │ └── routine.js │ ├── schemaSpy.css │ ├── schemaSpy.js │ └── tables │ │ ├── annul.html │ │ ├── bati.html │ │ ├── carvoi.html │ │ ├── cbtabt.html │ │ ├── ccoaff.html │ │ ├── ccocac.html │ │ ├── ccodem.html │ │ ├── ccodro.html │ │ ├── ccoeva.html │ │ ├── ccogrm.html │ │ ├── ccolloc.html │ │ ├── cconac.html │ │ ├── cconad.html │ │ ├── cconlc.html │ │ ├── cconlo.html │ │ ├── ccoplc.html │ │ ├── ccoqua.html │ │ ├── ccthp.html │ │ ├── cgrnum.html │ │ ├── cnatsp.html │ │ ├── commune.html │ │ ├── commune_majic.html │ │ ├── comptecommunal.html │ │ ├── ctpdl.html │ │ ├── detent.html │ │ ├── dformjur.html │ │ ├── dmatgm.html │ │ ├── dmatto.html │ │ ├── dnatcg.html │ │ ├── dnatlc.html │ │ ├── dnatpr.html │ │ ├── drgpos.html │ │ ├── dsgrpf.html │ │ ├── dteloc.html │ │ ├── edigeo_rel.html │ │ ├── fanr.html │ │ ├── fburx.html │ │ ├── geo_batiment.html │ │ ├── geo_batiment_parcelle.html │ │ ├── geo_borne.html │ │ ├── geo_borne_parcelle.html │ │ ├── geo_can.html │ │ ├── geo_commune.html │ │ ├── geo_copl.html │ │ ├── geo_croix.html │ │ ├── geo_croix_parcelle.html │ │ ├── geo_dur.html │ │ ├── geo_indp.html │ │ ├── geo_inp.html │ │ ├── geo_label.html │ │ ├── geo_lieudit.html │ │ ├── geo_map.html │ │ ├── geo_numvoie.html │ │ ├── geo_numvoie_parcelle.html │ │ ├── geo_palt.html │ │ ├── geo_parcelle.html │ │ ├── geo_ppln.html │ │ ├── geo_ptcanv.html │ │ ├── geo_qupl.html │ │ ├── geo_section.html │ │ ├── geo_subdfisc.html │ │ ├── geo_subdfisc_parcelle.html │ │ ├── geo_subdsect.html │ │ ├── geo_sym.html │ │ ├── geo_symblim.html │ │ ├── geo_symblim_parcelle.html │ │ ├── geo_tline.html │ │ ├── geo_tline_commune.html │ │ ├── geo_tpoint.html │ │ ├── geo_tpoint_commune.html │ │ ├── geo_tronfluv.html │ │ ├── geo_tronroute.html │ │ ├── geo_tsurf.html │ │ ├── geo_tsurf_commune.html │ │ ├── geo_unite_fonciere.html │ │ ├── geo_voiep.html │ │ ├── geo_zoncommuni.html │ │ ├── gimtom.html │ │ ├── gnexpl.html │ │ ├── gnexps.html │ │ ├── gnextl.html │ │ ├── gnexts.html │ │ ├── gpdl.html │ │ ├── gtoper.html │ │ ├── gtyp3.html │ │ ├── gtyp4.html │ │ ├── gtyp5.html │ │ ├── gtyp6.html │ │ ├── hlmsem.html │ │ ├── indldnbat.html │ │ ├── lloc.html │ │ ├── local00.html │ │ ├── local10.html │ │ ├── lots.html │ │ ├── lotslocaux.html │ │ ├── natvoi.html │ │ ├── natvoiriv.html │ │ ├── nbat.html │ │ ├── parcelle.html │ │ ├── parcelle_info.html │ │ ├── parcellecomposante.html │ │ ├── pdl.html │ │ ├── pdll.html │ │ ├── pev.html │ │ ├── pevdependances.html │ │ ├── pevexoneration.html │ │ ├── pevexoneration_imposable.html │ │ ├── pevexoneration_imposee.html │ │ ├── pevlissage.html │ │ ├── pevprincipale.html │ │ ├── pevprofessionnelle.html │ │ ├── pevtaxation.html │ │ ├── prop.html │ │ ├── proprietaire.html │ │ ├── suf.html │ │ ├── sufexoneration.html │ │ ├── suftaxation.html │ │ ├── table.js │ │ ├── top48a.html │ │ ├── typcom.html │ │ ├── type_filiation.html │ │ ├── typvoi.html │ │ ├── v_geo_parcelle.html │ │ └── voie.html ├── extension-qgis │ ├── charger.md │ ├── configuration.md │ ├── donnees.md │ ├── import.md │ ├── installation.md │ ├── interface.md │ └── videos.md ├── icon.png ├── index.md ├── media │ ├── cadastre_financeurs.png │ ├── cadastre_import_dialog.png │ ├── cadastre_load_dialog.png │ ├── cadastre_load_dialog_requete.png │ ├── cadastre_option_dialog.png │ ├── cadastre_parcelle_info.png │ ├── cadastre_search_dialog.png │ ├── cadastre_toolbar.png │ ├── logo-qgis.jpg │ ├── logo_3liz.png │ ├── quickfinder_configuration.png │ └── quickfinder_parcelles.png ├── module-lizmap │ ├── configuration.md │ ├── index.md │ ├── installation.md │ └── media │ │ ├── demo.png │ │ ├── load_data.png │ │ ├── table_attributaire.png │ │ ├── table_attributaire_parcelles.png │ │ └── wfs_properties.png └── processing │ ├── README.md │ ├── cadastre-config_project.jpg │ └── cadastre-telechargeur_edigeo_communal.jpg ├── mkdocs.yml ├── requirements ├── dev.txt ├── doc.txt └── packaging.txt ├── scripts ├── README.md ├── generation_documentation_schemaspy.sh └── pgsql-mat.properties └── setup.cfg /.docker/.env: -------------------------------------------------------------------------------- 1 | PLUGIN_NAME="cadastre" 2 | -------------------------------------------------------------------------------- /.docker/docker-compose.yml: -------------------------------------------------------------------------------- 1 | networks: 2 | qgis_plugin_network: 3 | 4 | services: 5 | db: 6 | profiles: 7 | - "qgis" 8 | - "db" 9 | image: 3liz/postgis:13-3 10 | hostname: db 11 | container_name: postgis 12 | networks: 13 | qgis_plugin_network: 14 | environment: 15 | POSTGRES_DB: "gis" 16 | POSTGRES_USER: "docker" 17 | POSTGRES_PASSWORD: "docker" 18 | POSTGRES_HOST: "db" 19 | volumes: 20 | - ../${PLUGIN_NAME}:/tests_directory/${PLUGIN_NAME} 21 | ports: 22 | - "35432:5432" 23 | healthcheck: 24 | test: "exit 0" 25 | 26 | qgis: 27 | profiles: 28 | - "qgis" 29 | image: qgis/qgis:release-3_28 30 | container_name: qgis 31 | networks: 32 | qgis_plugin_network: 33 | volumes: 34 | # - /tmp/.X11-unix:/tmp/.X11-unix 35 | - ../${PLUGIN_NAME}:/tests_directory/${PLUGIN_NAME} 36 | environment: 37 | # - DISPLAY=unix$DISPLAY 38 | - DISPLAY=:99 39 | - CI=True 40 | -------------------------------------------------------------------------------- /.docker/exec_tests.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | export $(grep -v '^#' .env | xargs) 3 | 4 | TEST_PATTERN=${1:default_pattern} 5 | 6 | docker exec -t qgis sh \ 7 | -c "export TEST_PATTERN=${TEST_PATTERN} && cd /tests_directory/${PLUGIN_NAME} && qgis_testrunner.sh tests.runner.test_package" 8 | -------------------------------------------------------------------------------- /.docker/postgis_connexions.ini: -------------------------------------------------------------------------------- 1 | [PostgreSQL] 2 | connections\test_database\allowGeometrylessTables=true 3 | connections\test_database\authcfg= 4 | connections\test_database\database=gis 5 | connections\test_database\dontResolveType=false 6 | connections\test_database\estimatedMetadata=false 7 | connections\test_database\geometryColumnsOnly=false 8 | connections\test_database\host=db 9 | connections\test_database\password=docker 10 | connections\test_database\port=5432 11 | connections\test_database\projectsInDatabase=false 12 | connections\test_database\publicOnly=false 13 | connections\test_database\savePassword=true 14 | connections\test_database\saveUsername=true 15 | connections\test_database\service= 16 | connections\test_database\sslmode=SslDisable 17 | connections\test_database\username=docker 18 | -------------------------------------------------------------------------------- /.docker/processing_doc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | export $(grep -v '^#' .env | xargs) 3 | 4 | #xhost + 5 | 6 | docker run -d \ 7 | --name qgis-testing-environment \ 8 | -v $(pwd)/../${PLUGIN_NAME}:/tests_directory/${PLUGIN_NAME} \ 9 | -v $(pwd)/../docs/processing:/processing \ 10 | -e DISPLAY=:99 \ 11 | -e CI=True \ 12 | qgis/qgis:release-3_10 13 | 14 | sleep 10 15 | 16 | echo "Setting up" 17 | docker exec -t qgis-testing-environment sh -c "qgis_setup.sh ${PLUGIN_NAME}" 18 | docker exec -t qgis-testing-environment sh \ 19 | -c "qgis_testrunner.sh ${PLUGIN_NAME}.infra.processing_doc.generate_processing_doc" 20 | 21 | docker kill qgis-testing-environment 22 | docker rm qgis-testing-environment 23 | -------------------------------------------------------------------------------- /.docker/schemaspy.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rm -rf "${PWD}"/../docs/database 4 | mkdir "${PWD}"/../docs/database 5 | 6 | chmod 777 -R "${PWD}"/../docs/database 7 | docker run \ 8 | -v "${PWD}/../docs/database:/output" \ 9 | --network="host" \ 10 | etrimaille/schemaspy-pg:latest \ 11 | -t pgsql-mat \ 12 | -dp /drivers \ 13 | -host localhost \ 14 | -db qgistest \ 15 | -u "${USER}" \ 16 | -p "${PASSWORD}" \ 17 | -port 5432 \ 18 | -s cadastre 19 | -------------------------------------------------------------------------------- /.docker/start.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | export $(grep -v '^#' .env | xargs) 3 | 4 | WITH_QGIS=${1:-noqgis} 5 | 6 | if [ "$WITH_QGIS" = with-qgis ]; then 7 | PROFILE="qgis" 8 | else 9 | PROFILE="db" 10 | fi 11 | 12 | docker compose --profile ${PROFILE} up -d --force-recreate --remove-orphans 13 | echo "Wait 10 seconds" 14 | sleep 10 15 | if [ "$WITH_QGIS" = with-qgis ]; then 16 | echo "Installation of the plugin ${PLUGIN_NAME}" 17 | docker exec -t qgis sh -c "qgis_setup.sh ${PLUGIN_NAME}" 18 | echo "Setup the database link from QGIS" 19 | docker cp postgis_connexions.ini qgis:/tmp 20 | docker exec qgis bash -c "cat /tmp/postgis_connexions.ini >> /root/.local/share/QGIS/QGIS3/profiles/default/QGIS/QGIS3.ini" 21 | fi 22 | echo "Containers are running" 23 | -------------------------------------------------------------------------------- /.docker/stop.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo 'Stopping/killing containers' 4 | docker compose -f docker-compose.yml kill 5 | docker compose -f docker-compose.yml rm -f 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | start_tests: 2 | @echo 'Start docker compose' 3 | @cd .docker && ./start.sh with-qgis 4 | 5 | run_tests: 6 | @echo 'Running tests, containers must be running' 7 | @cd .docker && ./exec_tests.sh 8 | 9 | stop_tests: 10 | @echo 'Stopping/killing containers' 11 | @cd .docker && ./stop.sh 12 | 13 | tests: start_tests run_tests stop_tests 14 | 15 | processing-doc: 16 | cd .docker && ./processing_doc.sh 17 | 18 | schemaspy: 19 | @echo 'Generating schemaspy documentation' 20 | @echo 'Not dockerized yet, need to use USER=user PASSWORD=password ./schemaspy.sh' 21 | -------------------------------------------------------------------------------- /cadastre/definitions.py: -------------------------------------------------------------------------------- 1 | URL_TOPO = ( 2 | "https://drive.opendata.craig.fr/s/opendata?path=%2Fadresse%2Ftopo" 3 | ) 4 | 5 | URL_DOCUMENTATION = "https://docs.3liz.org/QgisCadastrePlugin/" 6 | 7 | REGEX_BATI = "BATI" 8 | REGEX_LOTLOCAL = "LLOC|D166" 9 | REGEX_NBATI = "NBAT" 10 | REGEX_PDL = "PDL" 11 | REGEX_PROP = "PROP" 12 | REGEX_TOPO = "TOPO" 13 | 14 | IMPORT_MEMORY_ERROR_MESSAGE = "ERREUR : Mémoire
" 15 | "Veuillez recommencer l'import en baissant la valeur du " 16 | "paramètre 'Taille maximum des requêtes INSERT' selon la " 17 | "documentation : {}/extension-qgis/configuration/#performances
".format( 18 | URL_DOCUMENTATION 19 | ) 20 | -------------------------------------------------------------------------------- /cadastre/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = "Copyright 2021, 3Liz" 2 | __license__ = "GPL version 3" 3 | __email__ = "info@3liz.org" 4 | -------------------------------------------------------------------------------- /cadastre/forms/cadastre_print_form.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | cadastre_print_form 4 | 5 | 6 | 7 | 0 8 | 0 9 | 255 10 | 43 11 | 12 | 13 | 14 | Cadastre - Export multiple 15 | 16 | 17 | 18 | 19 | 20 | 0 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /cadastre/forms/icons/centrer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/centrer.png -------------------------------------------------------------------------------- /cadastre/forms/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/delete.png -------------------------------------------------------------------------------- /cadastre/forms/icons/identify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/identify.png -------------------------------------------------------------------------------- /cadastre/forms/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/open.png -------------------------------------------------------------------------------- /cadastre/forms/icons/releve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/releve.png -------------------------------------------------------------------------------- /cadastre/forms/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/search.png -------------------------------------------------------------------------------- /cadastre/forms/icons/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/select.png -------------------------------------------------------------------------------- /cadastre/forms/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/icons/zoom.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_3liz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_3liz.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_aduga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_aduga.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_asadefrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_asadefrance.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_cd54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_cd54.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_craig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_craig.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_datagences_bretagne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_datagences_bretagne.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_europe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_europe.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_feder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_feder.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_grandnarbonne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_grandnarbonne.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_mtes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_mtes.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_mtes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_mtes_2.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_picardie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_picardie.png -------------------------------------------------------------------------------- /cadastre/forms/images/logo_rennes_metropole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/forms/images/logo_rennes_metropole.png -------------------------------------------------------------------------------- /cadastre/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icon.png -------------------------------------------------------------------------------- /cadastre/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/about.png -------------------------------------------------------------------------------- /cadastre/icons/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/actions.png -------------------------------------------------------------------------------- /cadastre/icons/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/config.png -------------------------------------------------------------------------------- /cadastre/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/copy.png -------------------------------------------------------------------------------- /cadastre/icons/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/database.png -------------------------------------------------------------------------------- /cadastre/icons/identify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/identify.png -------------------------------------------------------------------------------- /cadastre/icons/mActionSaveAsPDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/mActionSaveAsPDF.png -------------------------------------------------------------------------------- /cadastre/icons/nosearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/nosearch.png -------------------------------------------------------------------------------- /cadastre/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/open.png -------------------------------------------------------------------------------- /cadastre/icons/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/output.png -------------------------------------------------------------------------------- /cadastre/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/print.png -------------------------------------------------------------------------------- /cadastre/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/save.png -------------------------------------------------------------------------------- /cadastre/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/search.png -------------------------------------------------------------------------------- /cadastre/icons/toolbar/get-parcelle-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/icons/toolbar/get-parcelle-info.png -------------------------------------------------------------------------------- /cadastre/processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/processing/__init__.py -------------------------------------------------------------------------------- /cadastre/processing/algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/processing/algorithms/__init__.py -------------------------------------------------------------------------------- /cadastre/processing/algorithms/base.py: -------------------------------------------------------------------------------- 1 | from abc import abstractmethod 2 | from os.path import join 3 | from pathlib import Path 4 | 5 | from qgis.core import QgsProcessingAlgorithm 6 | from qgis.PyQt.QtCore import QCoreApplication 7 | from qgis.PyQt.QtGui import QIcon 8 | 9 | __copyright__ = "Copyright 2021, 3Liz" 10 | __license__ = "GPL version 3" 11 | __email__ = "info@3liz.org" 12 | 13 | 14 | class BaseProcessingAlgorithm(QgsProcessingAlgorithm): 15 | 16 | @abstractmethod 17 | def shortHelpString(self): 18 | pass 19 | 20 | def tr(self, string): 21 | return QCoreApplication.translate('Processing', string) 22 | 23 | def createInstance(self): 24 | return self.__class__() 25 | 26 | def icon(self): 27 | plugin_dir = str(Path(__file__).resolve().parent.parent.parent) 28 | return QIcon(join(plugin_dir, 'icon.png')) 29 | -------------------------------------------------------------------------------- /cadastre/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/scripts/__init__.py -------------------------------------------------------------------------------- /cadastre/scripts/css/cadastre.css: -------------------------------------------------------------------------------- 1 | QTextEdit { 2 | font: 11pt Helvetica; 3 | text-align: left; 4 | } 5 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/edigeo_add_labels_xy.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO geo_label (object_rid, fon, hei, tyu, cef, csp, di1, di2, di3, di4, tpa, hta, vta, atr, ogr_obj_lnk, ogr_obj_lnk_layer, ogr_atr_val, ogr_angle, ogr_font_size, x_label, y_label, geom) 2 | SELECT object_rid, fon, hei, tyu, cef, csp, di1, di2, di3, di4, tpa, hta, vta, atr, ogr_obj_lnk, ogr_obj_lnk_layer, ogr_atr_val, ogr_angle, ogr_font_size, ST_X(geom), ST_Y(geom), geom 3 | FROM id_s_obj_z_1_2_2; 4 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/edigeo_create_table_unite_fonciere.sql: -------------------------------------------------------------------------------- 1 | -- Creation de la table pour stocker les unites foncieres 2 | CREATE TABLE geo_unite_fonciere 3 | ( 4 | id serial NOT NULL, 5 | comptecommunal character varying, 6 | annee character varying(4) NOT NULL, 7 | lot character varying 8 | ); 9 | SELECT AddGeometryColumn ( current_schema::text, 'geo_unite_fonciere', 'geom', ${SRID} , 'MULTIPOLYGON', 2 ); 10 | 11 | 12 | COMMENT ON TABLE geo_unite_fonciere IS 'Regroupe les unités foncières, c est a dire la fusion de parcelles adjacentes d un même propriétaire'; 13 | COMMENT ON COLUMN geo_unite_fonciere.id IS 'Identifiant des unités foncières'; 14 | COMMENT ON COLUMN geo_unite_fonciere.comptecommunal IS 'Compte communal des parcelles composant l unité foncière'; 15 | COMMENT ON COLUMN geo_unite_fonciere.annee IS 'Année'; 16 | 17 | ALTER TABLE ${PREFIXE}geo_unite_fonciere ADD CONSTRAINT geo_unite_fonciere_pk PRIMARY KEY (id); 18 | 19 | CREATE INDEX geo_unite_fonciere_geom_idx ON geo_unite_fonciere USING gist (geom); 20 | DROP INDEX IF EXISTS geo_unite_fonciere_comptecommunal_idx; 21 | CREATE INDEX geo_unite_fonciere_comptecommunal_idx ON geo_unite_fonciere (comptecommunal); 22 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/edigeo_unites_foncieres_postgis.sql: -------------------------------------------------------------------------------- 1 | -- Création des unités foncières pour PostGIS 2 | INSERT INTO ${PREFIXE}geo_unite_fonciere (comptecommunal, annee, lot, geom) 3 | SELECT 4 | comptecommunal, 5 | '${ANNEE}', '${LOT}', 6 | ST_Multi((St_Dump(St_Union(a.geom))).geom) as geom 7 | FROM ${PREFIXE}v_geo_parcelle a 8 | WHERE 9 | a.annee = '${ANNEE}' 10 | AND a.lot = '${LOT}' 11 | AND ST_IsValid(a.geom) 12 | AND comptecommunal IS NOT NULL 13 | GROUP BY comptecommunal; 14 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/edigeo_unites_foncieres_spatialite.sql: -------------------------------------------------------------------------------- 1 | -- Création des unités foncières pour Spatialite 2 | INSERT INTO geo_unite_fonciere (comptecommunal, annee, lot, geom) 3 | SELECT 4 | comptecommunal, 5 | '${ANNEE}', '${LOT}', 6 | CastToMultiPolygon(st_unaryunion(st_collect(a.geom))) as geom 7 | FROM v_geo_parcelle a 8 | WHERE 9 | a.annee = '${ANNEE}' 10 | AND a.lot = '${LOT}' 11 | AND ST_IsValid(a.geom) 12 | AND comptecommunal IS NOT NULL 13 | GROUP BY comptecommunal; 14 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/edigeo_update_majic_link.sql: -------------------------------------------------------------------------------- 1 | -- Lien commune <--> geo_commune 2 | UPDATE ${PREFIXE}geo_commune set commune= p.commune FROM ${PREFIXE}commune p WHERE p.annee='${ANNEE}' AND p.commune=SUBSTRING(geo_commune.geo_commune,1,4)||'${DEPDIR}'||SUBSTRING(geo_commune.geo_commune,5,3) AND geo_commune.annee='${ANNEE}'; 3 | UPDATE ${PREFIXE}commune SET geo_commune=g.geo_commune FROM ${PREFIXE}geo_commune g WHERE g.commune=commune.commune AND g.annee='${ANNEE}'; 4 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/majic3_purge_donnees_brutes.sql: -------------------------------------------------------------------------------- 1 | -- PURGE DES DONNEES BRUTES: DEBUT; 2 | TRUNCATE ${PREFIXE}bati; 3 | TRUNCATE ${PREFIXE}topo; 4 | TRUNCATE ${PREFIXE}lloc; 5 | TRUNCATE ${PREFIXE}nbat; 6 | TRUNCATE ${PREFIXE}pdll; 7 | TRUNCATE ${PREFIXE}prop; 8 | -- PURGE DES DONNEES BRUTES: FIN; 9 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/majic_recuperation_subdivisions_par_parcelle.sql: -------------------------------------------------------------------------------- 1 | SET search_path TO cadastre_2017,public; 2 | SELECT 3 | --suf 4 | s.ccosub AS s_nom, 5 | -- s.cgrnum AS s_groupe_nature_culture, 6 | cgrnum_lib AS s_groupe_nature_culture_lib, 7 | -- s.dsgrpf AS s_sous_groupe, 8 | dsgrpf_lib AS s_sous_groupe_lib, 9 | s.dclssf AS s_classe_dans_le_groupe, 10 | s.cnatsp AS s_code_nature_de_culture_speciale, 11 | s.drcsuba AS s_revenu_cadastral, 12 | 13 | -- sufexoneration 14 | -- se.gnexts AS se_nature_exoneration, 15 | gnexts_lib AS se_nature_exoneration_lib, 16 | -- se.ccolloc AS se_collectivite, 17 | ccolloc_lib AS se_collectivite_lib, 18 | Cast(se.pexn / 100 AS numeric(10,2)) AS se_pourcentage_exonere, 19 | round(Cast(s.drcsuba * Cast(se.pexn / 100 AS numeric(10,2)) / 100 AS numeric) , 2) as se_montant_exonere 20 | FROM suf s 21 | LEFT JOIN "cgrnum" ON s.cgrnum = cgrnum.cgrnum 22 | LEFT JOIN "dsgrpf" ON s.dsgrpf = dsgrpf.dsgrpf 23 | LEFT JOIN sufexoneration se ON s.suf = se.suf 24 | LEFT JOIN "gnexts" ON se.gnexts = trim(gnexts.gnexts) 25 | LEFT JOIN "ccolloc" ON se.ccolloc = ccolloc.ccolloc 26 | WHERE 2>1 27 | AND s.parcelle = '20170202430000D0689' 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/updates/create_commune_majic.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS commune_majic ( 2 | commune character varying (10), 3 | annee character varying (4), 4 | ccodep character varying (2), 5 | ccodir character varying (1), 6 | ccocom character varying (3), 7 | libcom character varying (50), 8 | lot character varying 9 | ); 10 | 11 | COMMENT ON TABLE commune_majic IS 'Commune (MAJIC - introduit depuis le millésime 2015). Cet article contient le code INSEE associé au libellé de la commune.'; 12 | COMMENT ON COLUMN commune_majic.ccodep IS 'Code département - Code département INSEE'; 13 | COMMENT ON COLUMN commune_majic.ccodir IS 'Code direction - Code direction dge'; 14 | COMMENT ON COLUMN commune_majic.ccocom IS 'Code commune - 3 caractères'; 15 | COMMENT ON COLUMN commune_majic.libcom IS 'Libellé de la commune'; 16 | -------------------------------------------------------------------------------- /cadastre/scripts/plugin/updates/create_geo_tronroute.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS geo_tronroute ( 2 | geo_tronroute serial NOT NULL, 3 | annee character varying(4) NOT NULL, 4 | object_rid character varying(80), 5 | tex character varying, 6 | creat_date date, 7 | update_dat date, 8 | lot character varying 9 | ); 10 | SELECT AddGeometryColumn ( current_schema::text, 'geo_tronroute', 'geom', ${SRID} , 'MULTIPOLYGON', 2 ); 11 | 12 | COMMENT ON TABLE geo_tronroute IS 'Élément surfacique (fermé) utilisé pour tous les tronçons de routes. Un libellé y est associé.'; 13 | COMMENT ON COLUMN geo_tronroute.geo_tronroute IS 'Identifiant'; 14 | COMMENT ON COLUMN geo_tronroute.annee IS 'Année'; 15 | COMMENT ON COLUMN geo_tronroute.object_rid IS 'Numéro d''objet'; 16 | COMMENT ON COLUMN geo_tronroute.tex IS 'Nom du cours d''eau'; 17 | COMMENT ON COLUMN geo_tronroute.creat_date IS 'Date de création'; 18 | COMMENT ON COLUMN geo_tronroute.update_dat IS 'Date de dernière modification'; 19 | 20 | -------------------------------------------------------------------------------- /cadastre/scripts/pyogr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/cadastre/scripts/pyogr/__init__.py -------------------------------------------------------------------------------- /cadastre/server/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2022, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | -------------------------------------------------------------------------------- /cadastre/templates/experimental.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calque 1 6 | Expérimental 7 | 8 | -------------------------------------------------------------------------------- /cadastre/templates/footer.tpl: -------------------------------------------------------------------------------- 1 | $foot 2 | -------------------------------------------------------------------------------- /cadastre/templates/header1.tpl: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
ANNÉE MAJ$anneeDEP/DIR$ccodep/$ccodirCOM$ccocom $libcom
17 | -------------------------------------------------------------------------------- /cadastre/templates/header1.tpl.sql: -------------------------------------------------------------------------------- 1 | 2 | SELECT p.annee, p.ccodep, p.ccodir, p.ccocom, c.libcom 3 | FROM $schema"proprietaire" p 4 | LEFT OUTER JOIN $schema"commune" c ON c.ccocom = p.ccocom AND c.ccodep = p.ccodep 5 | WHERE 2>1 6 | $and 7 | LIMIT 1 8 | 9 | -------------------------------------------------------------------------------- /cadastre/templates/header2.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
RELEVÉ $type
5 | 6 | -------------------------------------------------------------------------------- /cadastre/templates/header3.tpl: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
COMPTE$comptecommunal
13 | -------------------------------------------------------------------------------- /cadastre/templates/parcelle_info_parcelle_simple.sql: -------------------------------------------------------------------------------- 1 | SELECT 2 | 3 | '' || 4 | '' || 5 | '' || 6 | '' || 7 | '' || 8 | '' || 9 | '
Code' || p.idu || '
Commune' || c.tex2 || '
Surface géographique' || round(ST_Area(p.geom)) || ' m²
Surface bâtie' || coalesce(sum(round(ST_Area(b.geom))), 0) || ' m²
Pourcentage du bâti' || coalesce(round(100 * sum(ST_Area(b.geom)) / ST_Area(p.geom)), 0) || '
' 10 | 11 | FROM geo_parcelle p 12 | INNER JOIN geo_commune c 13 | ON ST_Intersects(ST_Centroid(p.geom), c.geom) 14 | LEFT OUTER JOIN geo_batiment b 15 | ON ST_Intersects(ST_Centroid(b.geom), p.geom) 16 | WHERE 2>1 17 | AND geo_parcelle = '%s' 18 | GROUP BY p.idu, p.geom, c.tex2 19 | -------------------------------------------------------------------------------- /cadastre/templates/parcelle_info_subdivisions.sql: -------------------------------------------------------------------------------- 1 | SELECT 2 | 3 | '' || 4 | '' || 5 | '' || 6 | '' || 7 | '' || 8 | '' || 9 | '' || 10 | '' || 11 | '' || 12 | '' || 13 | string_agg(Coalesce(line, ''), '') || 14 | '
LettreGroupeSous-GroupeNatureClasseContenanceRevenu cadastral
' 15 | 16 | 17 | FROM ( 18 | SELECT 19 | '' || 20 | '' || Coalesce(s.ccosub, '') || '' || 21 | '' || Coalesce(cgrnum_lib, '') || '' || 22 | '' || Coalesce(dsgrpf_lib, '') || '' || 23 | '' || Coalesce(s.cnatsp, '') || '' || 24 | '' || Coalesce(s.dclssf, '') || '' || 25 | '' || s.dcntsf || ' m²' || 26 | '' || s.drcsuba || '' || 27 | '' 28 | AS line 29 | FROM suf s 30 | LEFT JOIN "cgrnum" ON s.cgrnum = cgrnum.cgrnum 31 | LEFT JOIN "dsgrpf" ON s.dsgrpf = dsgrpf.dsgrpf 32 | WHERE 2>1 AND s.parcelle = '%s' 33 | ) foo 34 | 35 | -------------------------------------------------------------------------------- /cadastre/templates/parcelle_info_subdivisions_exoneration.sql: -------------------------------------------------------------------------------- 1 | SELECT 2 | 3 | '' || 4 | '' || 5 | '' || 6 | '' || 7 | '' || 8 | '' || 9 | '' || 10 | '' || 11 | '' || 12 | string_agg(line, '') || 13 | '
SubdivisionNatureLibelléCollectivitéPourcentageMontant
' 14 | 15 | FROM ( 16 | SELECT 17 | 18 | '' || 19 | '' || s.ccosub || '' || 20 | '' || se.gnexts || '' || 21 | '' || gnexts_lib || '' || 22 | '' || ccolloc_lib || '' || 23 | '' || Cast(se.pexn / 100 AS numeric(10,2)) || '' || 24 | '' || round(Cast(s.drcsuba * Cast(se.pexn / 100 AS numeric(10,2)) / 100 AS numeric) , 2) || '' || 25 | '' 26 | AS line 27 | 28 | FROM suf s 29 | LEFT JOIN sufexoneration se ON s.suf = se.suf 30 | LEFT JOIN "gnexts" ON se.gnexts = trim(gnexts.gnexts) 31 | LEFT JOIN "ccolloc" ON se.ccolloc = ccolloc.ccolloc 32 | WHERE 2>1 AND s.parcelle = '%s' AND s.suf = '%s' 33 | ) foo 34 | -------------------------------------------------------------------------------- /cadastre/templates/proprietaires.tpl: -------------------------------------------------------------------------------- 1 | 6 | 7 |
PROPRIÉTAIRES
8 | 9 | 10 | 11 | 12 |
$lines
13 | 14 | -------------------------------------------------------------------------------- /cadastre/templates/proprietaires_line.tpl: -------------------------------------------------------------------------------- 1 | $mainprop $epousede $adrprop $nele
2 | 3 | -------------------------------------------------------------------------------- /cadastre/templates/proprietaires_line.tpl.sql: -------------------------------------------------------------------------------- 1 | 2 | SELECT Coalesce(ccodro_lib, '') || ' - ' || p.dnuper || ' - ' || trim(Coalesce(p.dqualp, '')) || ' ' || trim(Coalesce(p.ddenom, '')) AS mainprop, 3 | CASE WHEN epxnee = 'NEE' THEN 'EP ' || trim(Coalesce(dnomlp, '')) || ' ' || trim(Coalesce(dprnlp, '')) ELSE '' END AS epousede, 4 | trim(Coalesce(p.dlign3, '')) || ' / ' || ltrim(trim(Coalesce(p.dlign4, '')), '0') || trim(Coalesce(p.dlign5, '')) || ' ' || trim(Coalesce(p.dlign6, '')) AS adrprop, 5 | CASE 6 | WHEN jdatnss IS NOT NULL AND NOT $for_third_party 7 | THEN ' Né(e) le ' || jdatnss || ' à ' || coalesce(p.dldnss, '') 8 | ELSE '' 9 | END AS nele 10 | FROM $schema"proprietaire" p 11 | INNER JOIN $schema"ccodro" cc ON cc.ccodro = p.ccodro 12 | WHERE 2>1 13 | $and 14 | -------------------------------------------------------------------------------- /cadastre/templates/proprietes_baties_line.tpl: -------------------------------------------------------------------------------- 1 | 2 | $section 3 | $ndeplan 4 | $ndevoirie 5 | $adresse 6 | $coderivoli 7 | $bat 8 | $ent 9 | $niv 10 | $ndeporte 11 | $numeroinvar 12 | $star 13 | $meval 14 | $af 15 | $natloc 16 | $cat 17 | $revenucadastral 18 | $coll 19 | $natexo 20 | $anret 21 | $andeb 22 | $fractionrcexo 23 | $pourcentageexo 24 | $txom 25 | $coefreduc 26 | $rcteom 27 | 28 | -------------------------------------------------------------------------------- /cadastre/templates/proprietes_baties_sum.tpl.sql: -------------------------------------------------------------------------------- 1 | 2 | SELECT 3 | 4 | CASE 5 | WHEN sum(px.rcexba2) > 0 THEN Coalesce(sum(px.rcexba2), '0') 6 | ELSE sum(pt.tse_bipevla) 7 | END AS revenucadastral, 8 | 9 | Coalesce(Sum(Cast(pt.co_vlbaia * px.pexb / 100 AS numeric(10,2))) , 0) as co_vlbaia, sum(pt.co_bipevla) as co_bipevla, 10 | Coalesce(Sum(Cast(pt.gp_vlbaia * px.pexb / 100 AS numeric(10,2))) , 0) as gp_vlbaia, sum(pt.gp_bipevla) as gp_bipevla, 11 | Coalesce(Sum(Cast(pt.de_vlbaia * px.pexb / 100 AS numeric(10,2))) , 0) as de_vlbaia, sum(pt.de_bipevla) as de_bipevla, 12 | Coalesce(Sum(Cast(pt.re_vlbaia * px.pexb / 100 AS numeric(10,2))) , 0) as re_vlbaia, Coalesce(sum(pt.re_bipevla), 0) as re_bipevla 13 | FROM 14 | $schema"parcelle" p 15 | INNER JOIN $schema"local00" l ON l.parcelle = p.parcelle 16 | INNER JOIN $schema"local10" l10 ON l10.local00 = l.local00 17 | INNER JOIN $schema"pev" pev ON pev.local10 = l10.local10 18 | LEFT JOIN $schema"pevexoneration" px ON px.pev = pev.pev 19 | LEFT JOIN $schema"pevtaxation" pt ON pt.pev = pev.pev 20 | WHERE 2>1 21 | $and 22 | 23 | -------------------------------------------------------------------------------- /cadastre/templates/proprietes_non_baties_line.tpl: -------------------------------------------------------------------------------- 1 | 2 | $section 3 | $ndeplan 4 | $ndevoirie 5 | $adresse 6 | $coderivoli 7 | $nparcprim 8 | $fpdp 9 | $star 10 | $suf 11 | $grssgr 12 | $cl 13 | $natcult 14 | $ha_contenance $a_contenance $ca_contenance 15 | $revenucadastral 16 | $coll 17 | $natexo 18 | $anret 19 | $fractionrcexo 20 | $pourcentageexo 21 | $tc 22 | $lff 23 | 24 | -------------------------------------------------------------------------------- /cadastre/templates/proprietes_non_baties_sum.tpl: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
CONTENANCE HA A CA$sum_ha_contenance $sum_a_contenance $sum_ca_contenanceREV IMPOSABLE$sum_drcsuba
19 | -------------------------------------------------------------------------------- /cadastre/templates/proprietes_non_baties_sum.tpl.sql: -------------------------------------------------------------------------------- 1 | SELECT --p.parcelle, 2 | 3 | CASE WHEN length(Cast(sum(s.dcntsf) AS text)) > 4 THEN substring(Cast(sum(s.dcntsf) AS text), 0, length(Cast(sum(s.dcntsf) AS text))-3) ELSE '0' END AS sum_ha_contenance, 4 | CASE WHEN length(Cast(sum(s.dcntsf) AS text)) > 2 THEN substring(Cast(sum(s.dcntsf) AS text), length(Cast(sum(s.dcntsf) AS text))-3, 2) ELSE '0' END AS sum_a_contenance, 5 | CASE WHEN length(Cast(sum(s.dcntsf) AS text)) > 0 THEN substring(Cast(sum(s.dcntsf) AS text), length(Cast(sum(s.dcntsf) AS text))-1, 2) ELSE '0' END AS sum_ca_contenance, 6 | 7 | sum(s.drcsuba) AS sum_drcsuba 8 | 9 | FROM $schema"parcelle" p 10 | INNER JOIN $schema"suf" s ON p.parcelle = s.parcelle 11 | --LEFT JOIN sufexoneration se ON s.suf = se.suf 12 | WHERE 2>1 13 | $and 14 | 15 | -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | --- 2 | hide: 3 | - navigation 4 | --- 5 | 6 | 10 | 11 | --8<-- "./CHANGELOG.md" 12 | -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | --- 2 | hide: 3 | - navigation 4 | --- 5 | 6 | 10 | 11 | --8<-- "./CONTRIBUTING.md" 12 | -------------------------------------------------------------------------------- /docs/database/anomalies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/anomalies.js -------------------------------------------------------------------------------- /docs/database/bower/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/database/bower/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/database/bower/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/database/bower/admin-lte/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /docs/database/bower/datatables.net-buttons-bs/js/buttons.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' Buttons 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs")(a,b).$;b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable;c.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons btn-group"}, 6 | button:{className:"btn btn-default"},collection:{tag:"ul",className:"dt-button-collection dropdown-menu",button:{tag:"li",className:"dt-button"},buttonLiner:{tag:"a",className:""}}}});a.ext.buttons.collection.text=function(a){return a.i18n("buttons.collection",'Collection ')};return a.Buttons}); 7 | -------------------------------------------------------------------------------- /docs/database/bower/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/database/bower/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/database/bower/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/database/bower/ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /docs/database/bower/ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/bower/ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /docs/database/constraint.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $.fn.dataTableExt.afnFiltering.length = 0; 3 | var options = { 4 | lengthChange: false, 5 | ordering: true, 6 | paging: config.pagination, 7 | pageLength: 50, 8 | autoWidth: true, 9 | processing: true, 10 | order: [[ 0, "asc" ]] 11 | } 12 | $('#fk_table').DataTable(options); 13 | $('#check_table').DataTable(options); 14 | } ); 15 | -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/annul.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/annul.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/bati.1degree.dot: -------------------------------------------------------------------------------- 1 | digraph "bati" { 2 | graph [ 3 | rankdir="RL" 4 | bgcolor="#ffffff" 5 | nodesep="0.18" 6 | ranksep="0.46" 7 | fontname="Helvetica" 8 | fontsize="11" 9 | ration="compress" 10 | ]; 11 | node [ 12 | fontname="Helvetica" 13 | fontsize="11" 14 | shape="plaintext" 15 | ]; 16 | edge [ 17 | arrowsize="0.8" 18 | ]; 19 | "bati" [ 20 | label=< 21 | 22 | 23 | 24 | 25 |
bati[table]
tmp
text[2147483647]
< 00 rows0 >
> 26 | URL="tables/bati.html" 27 | target="_top" 28 | tooltip="bati" 29 | ]; 30 | } 31 | -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/bati.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/bati.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/carvoi.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/carvoi.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/cbtabt.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/cbtabt.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccoaff.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccoaff.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccocac.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccocac.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccodem.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccodem.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccodro.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccodro.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccoeva.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccoeva.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccogrm.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccogrm.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccolloc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccolloc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/cconac.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/cconac.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/cconad.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/cconad.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/cconlc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/cconlc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/cconlo.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/cconlo.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccoplc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccoplc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccoqua.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccoqua.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ccthp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ccthp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/cgrnum.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/cgrnum.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/cnatsp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/cnatsp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/commune_majic.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/commune_majic.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/comptecommunal.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/comptecommunal.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/ctpdl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/ctpdl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/detent.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/detent.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dformjur.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dformjur.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dmatgm.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dmatgm.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dmatto.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dmatto.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dnatcg.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dnatcg.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dnatlc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dnatlc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dnatpr.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dnatpr.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/drgpos.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/drgpos.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dsgrpf.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dsgrpf.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/dteloc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/dteloc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/edigeo_rel.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/edigeo_rel.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/fanr.1degree.dot: -------------------------------------------------------------------------------- 1 | digraph "fanr" { 2 | graph [ 3 | rankdir="RL" 4 | bgcolor="#ffffff" 5 | nodesep="0.18" 6 | ranksep="0.46" 7 | fontname="Helvetica" 8 | fontsize="11" 9 | ration="compress" 10 | ]; 11 | node [ 12 | fontname="Helvetica" 13 | fontsize="11" 14 | shape="plaintext" 15 | ]; 16 | edge [ 17 | arrowsize="0.8" 18 | ]; 19 | "fanr" [ 20 | label=< 21 | 22 | 23 | 24 | 25 |
fanr[table]
tmp
text[2147483647]
< 00 rows0 >
> 26 | URL="tables/fanr.html" 27 | target="_top" 28 | tooltip="fanr" 29 | ]; 30 | } 31 | -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/fanr.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/fanr.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/fburx.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/fburx.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_batiment.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_batiment.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_batiment_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_batiment_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_borne.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_borne.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_borne_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_borne_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_can.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_can.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_copl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_copl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_croix.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_croix.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_croix_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_croix_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_dur.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_dur.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_indp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_indp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_inp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_inp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_label.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_label.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_lieudit.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_lieudit.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_map.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_map.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_numvoie.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_numvoie.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_numvoie_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_numvoie_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_palt.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_palt.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_ppln.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_ppln.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_ptcanv.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_ptcanv.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_qupl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_qupl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_section.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_section.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_subdfisc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_subdfisc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_subdfisc_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_subdfisc_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_subdsect.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_subdsect.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_sym.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_sym.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_symblim.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_symblim.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_symblim_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_symblim_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tline.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tline.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tline_commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tline_commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tpoint.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tpoint.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tpoint_commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tpoint_commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tronfluv.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tronfluv.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tronroute.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tronroute.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tsurf.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tsurf.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_tsurf_commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_tsurf_commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_unite_fonciere.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_unite_fonciere.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_voiep.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_voiep.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/geo_zoncommuni.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/geo_zoncommuni.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gimtom.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gimtom.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gnexpl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gnexpl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gnexps.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gnexps.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gnextl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gnextl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gnexts.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gnexts.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gpdl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gpdl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gtoper.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gtoper.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gtyp3.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gtyp3.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gtyp4.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gtyp4.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gtyp5.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gtyp5.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/gtyp6.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/gtyp6.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/hlmsem.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/hlmsem.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/indldnbat.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/indldnbat.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/lloc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/lloc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/local00.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/local00.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/local10.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/local10.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/lots.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/lots.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/lotslocaux.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/lotslocaux.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/natvoi.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/natvoi.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/natvoiriv.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/natvoiriv.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/nbat.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/nbat.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/parcelle_info.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/parcelle_info.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/parcellecomposante.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/parcellecomposante.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pdl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pdl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pdll.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pdll.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pev.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pev.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevdependances.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevdependances.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevexoneration.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevexoneration.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevexoneration_imposable.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevexoneration_imposable.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevexoneration_imposee.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevexoneration_imposee.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevlissage.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevlissage.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevprincipale.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevprincipale.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevprofessionnelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevprofessionnelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/pevtaxation.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/pevtaxation.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/prop.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/prop.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/proprietaire.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/proprietaire.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/suf.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/suf.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/sufexoneration.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/sufexoneration.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/suftaxation.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/suftaxation.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/top48a.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/top48a.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/typcom.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/typcom.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/type_filiation.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/type_filiation.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/typvoi.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/typvoi.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/orphans/voie.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/orphans/voie.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/summary/relationships.implied.compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/summary/relationships.implied.compact.png -------------------------------------------------------------------------------- /docs/database/diagrams/summary/relationships.implied.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/summary/relationships.implied.large.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/annul.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/annul.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/annul.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/annul.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/annul.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/annul.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/carvoi.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/carvoi.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/carvoi.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/carvoi.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/carvoi.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/carvoi.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cbtabt.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cbtabt.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cbtabt.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cbtabt.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cbtabt.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cbtabt.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoaff.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoaff.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoaff.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoaff.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoaff.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoaff.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccocac.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccocac.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccocac.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccocac.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccocac.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccocac.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccodem.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccodem.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccodem.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccodem.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccodem.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccodem.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccodro.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccodro.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccodro.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccodro.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccodro.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccodro.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoeva.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoeva.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoeva.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoeva.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoeva.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoeva.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccogrm.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccogrm.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccogrm.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccogrm.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccogrm.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccogrm.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccolloc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccolloc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccolloc.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccolloc.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccolloc.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccolloc.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconac.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconac.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconac.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconac.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconac.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconac.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconad.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconad.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconad.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconad.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconad.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconad.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconlc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconlc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconlc.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconlc.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconlc.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconlc.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconlo.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconlo.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconlo.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconlo.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cconlo.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cconlo.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoplc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoplc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoplc.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoplc.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoplc.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoplc.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoqua.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoqua.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoqua.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoqua.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccoqua.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccoqua.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccthp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccthp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccthp.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccthp.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ccthp.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ccthp.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cgrnum.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cgrnum.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cgrnum.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cgrnum.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cgrnum.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cgrnum.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cnatsp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cnatsp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cnatsp.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cnatsp.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/cnatsp.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/cnatsp.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/commune.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/commune.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/commune.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/commune.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/comptecommunal.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/comptecommunal.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/comptecommunal.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/comptecommunal.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/comptecommunal.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/comptecommunal.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ctpdl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ctpdl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ctpdl.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ctpdl.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/ctpdl.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/ctpdl.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/detent.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/detent.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/detent.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/detent.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/detent.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/detent.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dformjur.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dformjur.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dformjur.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dformjur.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dformjur.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dformjur.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dmatgm.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dmatgm.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dmatgm.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dmatgm.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dmatgm.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dmatgm.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dmatto.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dmatto.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dmatto.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dmatto.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dmatto.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dmatto.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatcg.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatcg.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatcg.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatcg.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatcg.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatcg.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatlc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatlc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatlc.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatlc.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatlc.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatlc.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatpr.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatpr.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatpr.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatpr.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dnatpr.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dnatpr.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dsgrpf.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dsgrpf.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dsgrpf.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dsgrpf.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dsgrpf.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dsgrpf.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dteloc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dteloc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dteloc.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dteloc.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/dteloc.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/dteloc.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_batiment.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_batiment.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_batiment.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_batiment.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_batiment.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_batiment.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_batiment_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_batiment_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_batiment_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_batiment_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_batiment_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_batiment_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_borne.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_borne.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_borne.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_borne.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_borne.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_borne.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_borne_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_borne_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_borne_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_borne_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_borne_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_borne_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_can.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_can.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_can.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_can.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_can.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_can.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_copl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_copl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_copl.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_copl.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_copl.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_copl.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_croix.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_croix.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_croix.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_croix.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_croix.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_croix.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_croix_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_croix_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_croix_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_croix_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_croix_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_croix_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_dur.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_dur.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_dur.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_dur.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_dur.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_dur.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_indp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_indp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_indp.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_indp.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_indp.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_indp.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_inp.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_inp.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_inp.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_inp.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_inp.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_inp.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_map.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_map.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_map.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_map.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_map.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_map.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_numvoie.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_numvoie.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_numvoie.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_numvoie.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_numvoie.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_numvoie.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_numvoie_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_numvoie_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_numvoie_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_numvoie_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_numvoie_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_numvoie_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_palt.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_palt.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_palt.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_palt.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_palt.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_palt.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_ppln.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_ppln.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_ppln.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_ppln.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_ppln.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_ppln.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_ptcanv.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_ptcanv.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_ptcanv.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_ptcanv.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_ptcanv.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_ptcanv.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_qupl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_qupl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_qupl.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_qupl.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_qupl.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_qupl.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdfisc.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdfisc.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdfisc.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdfisc.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdfisc.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdfisc.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdfisc_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdfisc_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdfisc_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdfisc_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdfisc_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdfisc_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdsect.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdsect.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdsect.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdsect.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_subdsect.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_subdsect.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_sym.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_sym.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_sym.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_sym.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_sym.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_sym.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_symblim.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_symblim.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_symblim.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_symblim.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_symblim.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_symblim.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_symblim_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_symblim_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_symblim_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_symblim_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_symblim_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_symblim_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tline.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tline.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tline.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tline.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tline.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tline.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tline_commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tline_commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tline_commune.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tline_commune.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tline_commune.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tline_commune.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tpoint.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tpoint.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tpoint.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tpoint.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tpoint.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tpoint.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tpoint_commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tpoint_commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tpoint_commune.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tpoint_commune.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tpoint_commune.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tpoint_commune.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tsurf.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tsurf.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tsurf.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tsurf.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tsurf.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tsurf.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tsurf_commune.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tsurf_commune.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tsurf_commune.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tsurf_commune.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_tsurf_commune.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_tsurf_commune.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_unite_fonciere.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_unite_fonciere.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_unite_fonciere.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_unite_fonciere.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/geo_unite_fonciere.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/geo_unite_fonciere.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gimtom.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gimtom.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gimtom.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gimtom.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gimtom.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gimtom.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexpl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexpl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexpl.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexpl.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexpl.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexpl.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexps.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexps.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexps.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexps.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexps.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexps.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnextl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnextl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnextl.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnextl.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnextl.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnextl.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexts.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexts.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexts.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexts.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gnexts.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gnexts.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gpdl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gpdl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gpdl.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gpdl.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gpdl.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gpdl.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtoper.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtoper.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtoper.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtoper.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtoper.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtoper.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp3.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp3.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp3.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp3.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp3.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp3.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp4.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp4.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp4.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp4.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp4.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp4.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp5.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp5.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp5.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp5.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp5.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp5.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp6.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp6.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp6.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp6.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/gtyp6.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/gtyp6.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/hlmsem.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/hlmsem.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/hlmsem.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/hlmsem.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/hlmsem.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/hlmsem.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/indldnbat.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/indldnbat.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/indldnbat.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/indldnbat.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/indldnbat.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/indldnbat.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/local00.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/local00.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/local00.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/local00.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/local00.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/local00.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/local10.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/local10.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/local10.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/local10.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/local10.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/local10.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/lots.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/lots.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/lots.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/lots.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/lots.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/lots.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/lotslocaux.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/lotslocaux.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/lotslocaux.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/lotslocaux.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/lotslocaux.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/lotslocaux.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/natvoi.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/natvoi.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/natvoi.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/natvoi.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/natvoi.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/natvoi.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/natvoiriv.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/natvoiriv.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/natvoiriv.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/natvoiriv.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/natvoiriv.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/natvoiriv.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcelle_info.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcelle_info.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcelle_info.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcelle_info.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcelle_info.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcelle_info.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcellecomposante.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcellecomposante.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcellecomposante.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcellecomposante.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/parcellecomposante.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/parcellecomposante.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pdl.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pdl.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pdl.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pdl.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pdl.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pdl.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pev.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pev.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pev.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pev.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pev.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pev.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevdependances.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevdependances.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevdependances.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevdependances.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevdependances.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevdependances.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration_imposable.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration_imposable.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration_imposable.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration_imposable.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration_imposable.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration_imposable.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration_imposee.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration_imposee.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration_imposee.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration_imposee.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevexoneration_imposee.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevexoneration_imposee.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevlissage.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevlissage.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevlissage.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevlissage.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevlissage.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevlissage.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevprincipale.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevprincipale.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevprincipale.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevprincipale.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevprincipale.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevprincipale.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevprofessionnelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevprofessionnelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevprofessionnelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevprofessionnelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevprofessionnelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevprofessionnelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevtaxation.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevtaxation.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevtaxation.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevtaxation.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/pevtaxation.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/pevtaxation.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/proprietaire.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/proprietaire.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/proprietaire.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/proprietaire.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/proprietaire.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/proprietaire.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/suf.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/suf.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/suf.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/suf.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/suf.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/suf.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/sufexoneration.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/sufexoneration.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/sufexoneration.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/sufexoneration.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/sufexoneration.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/sufexoneration.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/suftaxation.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/suftaxation.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/suftaxation.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/suftaxation.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/suftaxation.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/suftaxation.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/top48a.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/top48a.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/top48a.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/top48a.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/top48a.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/top48a.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/typcom.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/typcom.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/typcom.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/typcom.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/typcom.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/typcom.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/type_filiation.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/type_filiation.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/type_filiation.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/type_filiation.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/type_filiation.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/type_filiation.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/typvoi.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/typvoi.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/typvoi.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/typvoi.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/typvoi.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/typvoi.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/v_geo_parcelle.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/v_geo_parcelle.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/v_geo_parcelle.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/v_geo_parcelle.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/v_geo_parcelle.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/v_geo_parcelle.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/voie.1degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/voie.1degree.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/voie.implied1degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/voie.implied1degrees.png -------------------------------------------------------------------------------- /docs/database/diagrams/tables/voie.implied2degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/diagrams/tables/voie.implied2degrees.png -------------------------------------------------------------------------------- /docs/database/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/favicon.png -------------------------------------------------------------------------------- /docs/database/fonts/indieflower/indie-flower-v8-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/indieflower/indie-flower-v8-latin-regular.ttf -------------------------------------------------------------------------------- /docs/database/fonts/indieflower/indie-flower-v8-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/indieflower/indie-flower-v8-latin-regular.woff -------------------------------------------------------------------------------- /docs/database/fonts/indieflower/indie-flower-v8-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/indieflower/indie-flower-v8-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/database/fonts/indieflower/indie-flower.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Indie Flower'; 3 | font-style: normal; 4 | font-weight: 400; 5 | src: url('indie-flower-v8-latin-regular.eot'); /* IE9 Compat Modes */ 6 | src: local('Indie Flower'), local('IndieFlower'), 7 | url('indie-flower-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 8 | url('indie-flower-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ 9 | url('indie-flower-v8-latin-regular.woff') format('woff'), /* Modern Browsers */ 10 | url('indie-flower-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ 11 | url('indie-flower-v8-latin-regular.svg#IndieFlower') format('svg'); /* Legacy iOS */ 12 | } -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300.ttf -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300.woff -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300.woff2 -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300italic.ttf -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300italic.woff -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-300italic.woff2 -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600.ttf -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600.woff -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600.woff2 -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600italic.ttf -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600italic.woff -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-600italic.woff2 -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-700.ttf -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-700.woff -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-700.woff2 -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-regular.ttf -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-regular.woff -------------------------------------------------------------------------------- /docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/fonts/source-sans-pro/source-sans-pro-v10-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/database/images/foreignKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/images/foreignKey.png -------------------------------------------------------------------------------- /docs/database/images/foreignKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/images/foreignKeys.png -------------------------------------------------------------------------------- /docs/database/images/primaryKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/images/primaryKey.png -------------------------------------------------------------------------------- /docs/database/images/primaryKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/database/images/primaryKeys.png -------------------------------------------------------------------------------- /docs/database/info-html.txt: -------------------------------------------------------------------------------- 1 | date=2021-05-12 07:05:32+0000 2 | os=Linux 5.4.0-72-generic 3 | schemaspy-version=6.1.0 4 | schemaspy-build=6.1.0.41 2019-09-17 21:52:57 5 | diagramImplementation=Graphviz dot 2.38 6 | -------------------------------------------------------------------------------- /docs/database/relationships.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | var pgurl = window.location.href.substr(window.location.href.lastIndexOf("/")+1); 3 | $("#navbar-collapse ul li a").each(function(){ 4 | if($(this).attr("href") == pgurl || $(this).attr("href") == '' ) 5 | $(this).parent().addClass("active"); 6 | }) 7 | }); 8 | 9 | $(function() { 10 | var $imgs = $('img.diagram, object.diagram'); 11 | $imgs.css("cursor", "move") 12 | $imgs.draggable(); 13 | }); 14 | -------------------------------------------------------------------------------- /docs/database/routines/routine.js: -------------------------------------------------------------------------------- 1 | function enableAnchors() { 2 | anchors.options.visible = 'always'; 3 | anchors.add('h3'); 4 | } 5 | 6 | $(document).ready(function() { 7 | enableAnchors(); 8 | 9 | var table = $('#standard_table').DataTable( { 10 | lengthChange: false, 11 | bSort: false, 12 | bPaginate: false, 13 | autoWidth: true, 14 | buttons: [ ] 15 | } ); 16 | 17 | table.buttons().container() 18 | .appendTo('#standard_table_wrapper .col-sm-6:eq(0)' ); 19 | } ); 20 | 21 | var codeElement = document.getElementById("sql-script-codemirror"); 22 | var editor = null; 23 | if (null != codeElement) { 24 | editor = CodeMirror.fromTextArea(codeElement, { 25 | lineNumbers: true, 26 | mode: 'text/x-sql', 27 | indentWithTabs: true, 28 | smartIndent: true, 29 | lineNumbers: true, 30 | matchBrackets: true, 31 | autofocus: true, 32 | readOnly: true 33 | }); 34 | } 35 | -------------------------------------------------------------------------------- /docs/extension-qgis/installation.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | 3 | L'extension Cadastre est dans les dépôts officiels du projet QGIS. Pour l'installer, il faut : 4 | 5 | * **Lancer QGIS** 6 | * Menu **Extension > Installer/Gérer les extensions** 7 | * Onglet **Paramètres** > Vérifier que la case *Afficher les extensions expérimentales* est bien cochée 8 | * Onglet **En obtenir plus** : chercher le plugin **cadastre**, le sélectionner et cliquer sur installer 9 | 10 | Une fois le plugin installé, un nouveau menu **Cadastre** apparaît dans le menu *Extensions* de QGIS. Il 11 | comporte les sous-menus suivants : 12 | 13 | * **Importer des données** 14 | * **Charger des données** 15 | * **Outils de recherche** 16 | * **Exporter la vue** 17 | * **Configurer le plugin** 18 | * **À propos** 19 | * **Notes de version** 20 | * **Aide** 21 | 22 | Ces sous-menus sont détaillés dans les chapitres suivants. 23 | -------------------------------------------------------------------------------- /docs/extension-qgis/videos.md: -------------------------------------------------------------------------------- 1 | # Vidéos 2 | 3 | Pour faciliter la prise en main, vous pouvez consulter les vidéos en ligne : 4 | 5 | * Import et chargement : https://vimeo.com/75004889 6 | * Recherche : https://vimeo.com/74807532 7 | -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/icon.png -------------------------------------------------------------------------------- /docs/media/cadastre_financeurs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_financeurs.png -------------------------------------------------------------------------------- /docs/media/cadastre_import_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_import_dialog.png -------------------------------------------------------------------------------- /docs/media/cadastre_load_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_load_dialog.png -------------------------------------------------------------------------------- /docs/media/cadastre_load_dialog_requete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_load_dialog_requete.png -------------------------------------------------------------------------------- /docs/media/cadastre_option_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_option_dialog.png -------------------------------------------------------------------------------- /docs/media/cadastre_parcelle_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_parcelle_info.png -------------------------------------------------------------------------------- /docs/media/cadastre_search_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_search_dialog.png -------------------------------------------------------------------------------- /docs/media/cadastre_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/cadastre_toolbar.png -------------------------------------------------------------------------------- /docs/media/logo-qgis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/logo-qgis.jpg -------------------------------------------------------------------------------- /docs/media/logo_3liz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/logo_3liz.png -------------------------------------------------------------------------------- /docs/media/quickfinder_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/quickfinder_configuration.png -------------------------------------------------------------------------------- /docs/media/quickfinder_parcelles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/media/quickfinder_parcelles.png -------------------------------------------------------------------------------- /docs/module-lizmap/index.md: -------------------------------------------------------------------------------- 1 | # Module Lizmap 2 | 3 | Il est possible d'exploiter les données cadastrales dans l'interface web de 4 | [Lizmap](https://github.com/3liz/lizmap-web-client/). 5 | 6 | Pour cela, il faut : 7 | 8 | * [installer](installation.md) le module sur le serveur Lizmap 9 | * [configurer](configuration.md) le projet QGIS 10 | 11 | ![démo](./media/demo.png) 12 | -------------------------------------------------------------------------------- /docs/module-lizmap/media/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/module-lizmap/media/demo.png -------------------------------------------------------------------------------- /docs/module-lizmap/media/load_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/module-lizmap/media/load_data.png -------------------------------------------------------------------------------- /docs/module-lizmap/media/table_attributaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/module-lizmap/media/table_attributaire.png -------------------------------------------------------------------------------- /docs/module-lizmap/media/table_attributaire_parcelles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/module-lizmap/media/table_attributaire_parcelles.png -------------------------------------------------------------------------------- /docs/module-lizmap/media/wfs_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/module-lizmap/media/wfs_properties.png -------------------------------------------------------------------------------- /docs/processing/cadastre-config_project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/processing/cadastre-config_project.jpg -------------------------------------------------------------------------------- /docs/processing/cadastre-telechargeur_edigeo_communal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/QgisCadastrePlugin/c4a6cd0007724da7a7d30b812540216634e6eeca/docs/processing/cadastre-telechargeur_edigeo_communal.jpg -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | flake8==7.2.0 2 | # flake8-absolute-import 3 | # flake8-bugbear 4 | # flake8-eradicate 5 | # flake8-builtins 6 | # flake8-mutable 7 | # flake8-multiline-containers 8 | # flake8-pep3101 9 | # flake8-print 10 | flake8-isort 11 | # flake8-variables-names 12 | isort 13 | -------------------------------------------------------------------------------- /requirements/doc.txt: -------------------------------------------------------------------------------- 1 | mkdocs-material>=8.1.0,<10.0.0 2 | mkdocs-git-revision-date-localized-plugin 3 | -------------------------------------------------------------------------------- /requirements/packaging.txt: -------------------------------------------------------------------------------- 1 | qgis-plugin-ci>=2.3.0,<3.0.0 2 | -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | ## Générer la documentation via SchemaSpy 2 | 3 | Pour créer la documentation, il faut lancer un script en ligne de commande, sous distribution Linux, en passant les paramètres attendus. 4 | 5 | Ce script se base sur l'outil SchemaSpy, qu'il faut donc télécharger et mettre dans le répertoire `schemaspy`, ainsi que sur le driver pour PostgreSQL. 6 | Les binaires java peuvent être téléchargés ici: 7 | 8 | * SchemaSpy: https://github.com/schemaspy/schemaspy/releases Par exemple `schemaspy-6.0.0.jar` 9 | * Driver PostgreSQL: https://jdbc.postgresql.org/download.html Par exemple `postgresql-42.2.5.jar` 10 | 11 | Une fois les deux fichiers jar mis dans le répertoire schemaspy, on peut lancer la génération de la documentation: 12 | 13 | ```bash 14 | # Se placer dans ce repertoire contenant le script de génération 15 | cd scripts/ 16 | 17 | # Lancer la commande avec les bons paramètres 18 | ./generation_documentation_schemaspy.sh -h localhost -p 5432 -d cadastre -u cadastre -s schema_cadastre -o "../docs/database" 19 | ``` 20 | 21 | Le mot de passe est demandé, puis la documentation est générée. 22 | -------------------------------------------------------------------------------- /scripts/generation_documentation_schemaspy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | while getopts h:p:d:u:s:o: option 4 | do 5 | case "${option}" 6 | in 7 | h) DBHOST=${OPTARG};; 8 | p) DBPORT=${OPTARG};; 9 | d) DBNAME=${OPTARG};; 10 | u) DBUSER=${OPTARG};; 11 | s) DBSCHEMA=${OPTARG};; 12 | o) OUTPUTDIR=${OPTARG};; 13 | esac 14 | done 15 | 16 | 17 | # On supprime le contenu du répertoire de sortie 18 | rm -rf $OUTPUTDIR/* 19 | 20 | # On cree le repertoire si besoin 21 | mkdir -p $OUTPUTDIR 22 | 23 | # On lance schemaspy sur ce schema PostgreSQL 24 | java -jar schemaspy-6.0.0.jar -t pgsql-mat -dp postgresql-42.2.4.jar -host $DBHOST -port $DBPORT -db $DBNAME -u $DBUSER -pfp -s $DBSCHEMA --no-rows -o $OUTPUTDIR 25 | -------------------------------------------------------------------------------- /scripts/pgsql-mat.properties: -------------------------------------------------------------------------------- 1 | # 2 | # see http://schemaspy.org/dbtypes.html 3 | # for configuration / customization details 4 | # 5 | extends=pgsql 6 | 7 | # return text that represents a specific :view / :schema 8 | selectViewSql=select definition as view_definition from pg_views where viewname = :table UNION select definition as view_definition from pg_matviews where matviewname = :table 9 | 10 | viewTypes=VIEW,MATERIALIZED VIEW 11 | 12 | --------------------------------------------------------------------------------