├── _config.yml
├── validator-core
├── src
│ ├── test
│ │ └── resources
│ │ │ ├── csv
│ │ │ ├── empty.csv
│ │ │ ├── sample-with-empty.csv
│ │ │ ├── sample-utf8.csv
│ │ │ ├── DUMMY.csv
│ │ │ ├── not-trimmed.csv
│ │ │ ├── sample-latin1.csv
│ │ │ └── AC2_ASSIETTE_SUP_S_014_latin1.csv
│ │ │ ├── jexiste.txt
│ │ │ ├── data
│ │ │ ├── shp_latin1
│ │ │ │ ├── PRESCRIPTION_PCT.cpg
│ │ │ │ ├── PRESCRIPTION_PCT.dbf
│ │ │ │ ├── PRESCRIPTION_PCT.shp
│ │ │ │ └── PRESCRIPTION_PCT.shx
│ │ │ ├── shp_utf8
│ │ │ │ ├── PRESCRIPTION_PCT.cpg~
│ │ │ │ ├── PRESCRIPTION_PCT.dbf
│ │ │ │ ├── PRESCRIPTION_PCT.shp
│ │ │ │ └── PRESCRIPTION_PCT.shx
│ │ │ ├── POINT.shp
│ │ │ ├── POINT.shx
│ │ │ ├── bug-backslash
│ │ │ │ ├── source.dbf
│ │ │ │ └── source.csv
│ │ │ ├── dbf_latin1
│ │ │ │ └── ACTE_SUP.dbf
│ │ │ ├── tab_latin1
│ │ │ │ ├── PRESCRIPTION_PCT.ID
│ │ │ │ ├── ZONE_URBA_41003.DAT
│ │ │ │ ├── ZONE_URBA_41003.ID
│ │ │ │ ├── ZONE_URBA_41003.MAP
│ │ │ │ ├── PRESCRIPTION_PCT.DAT
│ │ │ │ └── PRESCRIPTION_PCT.MAP
│ │ │ └── tab_utf8
│ │ │ │ ├── PRESCRIPTION_PCT.dat
│ │ │ │ ├── PRESCRIPTION_PCT.id
│ │ │ │ └── PRESCRIPTION_PCT.map
│ │ │ ├── documents
│ │ │ ├── commune-sample
│ │ │ │ ├── a_directory
│ │ │ │ │ └── a_file.pdf
│ │ │ │ ├── not-a-metadata.xml
│ │ │ │ └── commune.csv
│ │ │ └── adresse-multiple
│ │ │ │ ├── adresse_1.csv
│ │ │ │ ├── adresse_2.csv
│ │ │ │ ├── adresse_4.csv
│ │ │ │ └── adresse_3.csv
│ │ │ ├── metadata
│ │ │ ├── not-an-xml-file.xml
│ │ │ └── not-a-metadatafile.xml
│ │ │ ├── dbf
│ │ │ ├── SPECIAL_CHARS.DBF
│ │ │ └── SINGLE_COLUMN_BUG.dbf
│ │ │ ├── replacer
│ │ │ └── sample.csv
│ │ │ ├── gml
│ │ │ └── INVALID.gml
│ │ │ ├── emprise-command-options
│ │ │ └── emprise.wkt
│ │ │ ├── geopackage
│ │ │ └── pprt_69dreal20090005
│ │ │ │ └── pprt_69dreal20090005.gpkg
│ │ │ └── custom-errors
│ │ │ └── config.json
│ └── main
│ │ └── resources
│ │ ├── simplify
│ │ └── ISO-8859-1.csv
│ │ └── codes
│ │ └── GeometryErrorCode.properties
└── .gitignore
├── validator-plugin-cnig
├── src
│ ├── test
│ │ └── resources
│ │ │ ├── .gitkeep
│ │ │ ├── geometry
│ │ │ ├── output.csv
│ │ │ ├── broken_geometries.csv
│ │ │ ├── fair_geometries.csv
│ │ │ └── dubious_geometries.csv
│ │ │ ├── documents
│ │ │ ├── 251702833_scot
│ │ │ │ ├── SCOT.cpg
│ │ │ │ ├── SCOT.dbf
│ │ │ │ ├── SCOT.shp
│ │ │ │ ├── SCOT.shx
│ │ │ │ ├── SCOT.prj
│ │ │ │ ├── 251702833_doo_20121220.pdf
│ │ │ │ ├── 251702833_padd_20121220.pdf
│ │ │ │ └── 251702833_rapport_20121220.pdf
│ │ │ ├── 241800432_PLUi_20200128
│ │ │ │ ├── 241800432_DOC_URBA_20200128.cpg
│ │ │ │ ├── 241800432_DOC_URBA_COM_20200128.cpg
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── 241800432_ZONE_URBA_20200128.cpg
│ │ │ │ │ ├── 241800432_PRESCRIPTION_LIN_20200128.cpg
│ │ │ │ │ ├── 241800432_PRESCRIPTION_PCT_20200128.cpg
│ │ │ │ │ ├── 241800432_PRESCRIPTION_SURF_20200128.cpg
│ │ │ │ │ ├── 241800432_ZONE_URBA_20200128.dbf
│ │ │ │ │ ├── 241800432_ZONE_URBA_20200128.shp
│ │ │ │ │ ├── 241800432_ZONE_URBA_20200128.shx
│ │ │ │ │ ├── 241800432_PRESCRIPTION_LIN_20200128.dbf
│ │ │ │ │ ├── 241800432_PRESCRIPTION_LIN_20200128.shp
│ │ │ │ │ ├── 241800432_PRESCRIPTION_LIN_20200128.shx
│ │ │ │ │ ├── 241800432_PRESCRIPTION_PCT_20200128.dbf
│ │ │ │ │ ├── 241800432_PRESCRIPTION_PCT_20200128.shp
│ │ │ │ │ ├── 241800432_PRESCRIPTION_PCT_20200128.shx
│ │ │ │ │ └── 241800432_PRESCRIPTION_SURF_20200128.dbf
│ │ │ │ ├── 241800432_DOC_URBA_COM_20200128.dbf
│ │ │ │ ├── 241800432_DOC_URBA_20200128.dbf
│ │ │ │ └── Pieces_ecrites
│ │ │ │ │ ├── 2_PADD
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ └── 241800432_padd_20200128.pdf
│ │ │ │ │ ├── 4_Annexes
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ └── 241800432_liste_sup_20200128.pdf
│ │ │ │ │ ├── 0_Procedure
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ └── 241800432_procedure_20200128.pdf
│ │ │ │ │ ├── 3_Reglement
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ └── 241800432_reglement_20200128.pdf
│ │ │ │ │ ├── 1_Rapport_de_presentation
│ │ │ │ │ └── Thumbs.db
│ │ │ │ │ └── 5_Orientations_amenagement
│ │ │ │ │ └── Thumbs.db
│ │ │ ├── 30014_PLU_20171013
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── 30014_INFO_PCT_20171013.cpg
│ │ │ │ │ ├── 30014_INFO_SURF_20171013.cpg
│ │ │ │ │ ├── 30014_ZONE_URBA_20171013.cpg
│ │ │ │ │ ├── 30014_PRESCRIPTION_LIN_20171013.cpg
│ │ │ │ │ ├── 30014_PRESCRIPTION_PCT_20171013.cpg
│ │ │ │ │ ├── 30014_PRESCRIPTION_SURF_20171013.cpg
│ │ │ │ │ ├── 30014_INFO_PCT_20171013.dbf
│ │ │ │ │ ├── 30014_INFO_PCT_20171013.idx
│ │ │ │ │ ├── 30014_INFO_PCT_20171013.shp
│ │ │ │ │ ├── 30014_INFO_PCT_20171013.shx
│ │ │ │ │ ├── 30014_INFO_SURF_20171013.dbf
│ │ │ │ │ ├── 30014_INFO_SURF_20171013.idx
│ │ │ │ │ ├── 30014_INFO_SURF_20171013.shp
│ │ │ │ │ ├── 30014_INFO_SURF_20171013.shx
│ │ │ │ │ ├── 30014_ZONE_URBA_20171013.dbf
│ │ │ │ │ ├── 30014_ZONE_URBA_20171013.idx
│ │ │ │ │ ├── 30014_ZONE_URBA_20171013.shp
│ │ │ │ │ ├── 30014_ZONE_URBA_20171013.shx
│ │ │ │ │ ├── 30014_PRESCRIPTION_LIN_20171013.dbf
│ │ │ │ │ ├── 30014_PRESCRIPTION_LIN_20171013.idx
│ │ │ │ │ ├── 30014_PRESCRIPTION_LIN_20171013.shp
│ │ │ │ │ ├── 30014_PRESCRIPTION_LIN_20171013.shx
│ │ │ │ │ ├── 30014_PRESCRIPTION_PCT_20171013.dbf
│ │ │ │ │ ├── 30014_PRESCRIPTION_PCT_20171013.idx
│ │ │ │ │ ├── 30014_PRESCRIPTION_PCT_20171013.shp
│ │ │ │ │ ├── 30014_PRESCRIPTION_PCT_20171013.shx
│ │ │ │ │ ├── 30014_PRESCRIPTION_SURF_20171013.dbf
│ │ │ │ │ ├── 30014_PRESCRIPTION_SURF_20171013.idx
│ │ │ │ │ ├── 30014_PRESCRIPTION_SURF_20171013.shp
│ │ │ │ │ └── 30014_PRESCRIPTION_SURF_20171013.shx
│ │ │ │ ├── Pieces_ecrites
│ │ │ │ │ ├── 4_Annexes
│ │ │ │ │ │ ├── ce_fichier_nest_pas_prevu.csv
│ │ │ │ │ │ ├── 30014_titres_pieces_ecrites_20171013.csv
│ │ │ │ │ │ ├── 30014_liste_sup_20171013.pdf
│ │ │ │ │ │ ├── 30014_plan_sup_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_surf_04_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_text_19_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_lin_99_00_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_pct_99_00_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_lin_19_eu_01_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_lin_19_eu_02_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_surf_99_00_1_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_surf_99_00_2_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_surf_99_00_3_20171013.pdf
│ │ │ │ │ │ ├── 30014_info_surf_99_00_4_20171013.pdf
│ │ │ │ │ │ └── 30014_info_surf_99_00_5_20171013.pdf
│ │ │ │ │ ├── 3_Reglement
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── 30014_reglement_20171013.pdf
│ │ │ │ │ │ ├── 30014_prescription_surf_01_20171013.pdf
│ │ │ │ │ │ ├── 30014_prescription_surf_05_20171013.pdf
│ │ │ │ │ │ └── 30014_reglement_graphique_20171013.pdf
│ │ │ │ │ ├── 2_PADD
│ │ │ │ │ │ └── 30014_padd_20141013.pdf
│ │ │ │ │ └── 0_Procedure
│ │ │ │ │ │ └── 30014_procedure_20171013.pdf
│ │ │ │ ├── 30014_DOC_URBA_20171013.DBF
│ │ │ │ └── 30014_DOC_URBA_COM_20171013.DBF
│ │ │ ├── 123456789_A5_088_20200313
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── A5_ASSIETTE_SUP_S.cpg
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.cpg
│ │ │ │ │ ├── A5_ACTE_SUP.dbf
│ │ │ │ │ ├── A5_SERVITUDE.dbf
│ │ │ │ │ ├── A5_ASSIETTE_SUP_S.shp
│ │ │ │ │ ├── A5_ASSIETTE_SUP_S.shx
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.dbf
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.shp
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.shx
│ │ │ │ │ ├── A5_GESTIONNAIRE_SUP.dbf
│ │ │ │ │ └── A5_SERVITUDE_ACTE_SUP.dbf
│ │ │ │ └── Actes
│ │ │ │ │ └── A5_ValMoselle_act.pdf
│ │ │ ├── 123456789_A5_88_20200313
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── A5_ASSIETTE_SUP_S.cpg
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.cpg
│ │ │ │ │ ├── A5_ACTE_SUP.dbf
│ │ │ │ │ ├── A5_SERVITUDE.dbf
│ │ │ │ │ ├── A5_ASSIETTE_SUP_S.shp
│ │ │ │ │ ├── A5_ASSIETTE_SUP_S.shx
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.dbf
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.shp
│ │ │ │ │ ├── A5_GENERATEUR_SUP_L.shx
│ │ │ │ │ ├── A5_GESTIONNAIRE_SUP.dbf
│ │ │ │ │ └── A5_SERVITUDE_ACTE_SUP.dbf
│ │ │ │ └── Actes
│ │ │ │ │ └── A5_ValMoselle_act.pdf
│ │ │ ├── 172014607_AC1_2A_20180130
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── AC1_ASSIETTE_SUP_S.cpg
│ │ │ │ │ ├── AC1_GENERATEUR_SUP_S.cpg
│ │ │ │ │ ├── AC1_ACTE_SUP.dbf
│ │ │ │ │ ├── AC1_SERVITUDE.dbf
│ │ │ │ │ ├── AC1_ASSIETTE_SUP_S.dbf
│ │ │ │ │ ├── AC1_ASSIETTE_SUP_S.shp
│ │ │ │ │ ├── AC1_ASSIETTE_SUP_S.shx
│ │ │ │ │ ├── AC1_GENERATEUR_SUP_S.dbf
│ │ │ │ │ ├── AC1_GENERATEUR_SUP_S.shp
│ │ │ │ │ ├── AC1_GENERATEUR_SUP_S.shx
│ │ │ │ │ └── AC1_GESTIONNAIRE_SUP.dbf
│ │ │ │ └── Actes
│ │ │ │ │ ├── AC1_Maison_19270512_act.pdf
│ │ │ │ │ ├── AC1_Maison_19351104_act.pdf
│ │ │ │ │ ├── AC1_Filitosa_19801210_act.pdf
│ │ │ │ │ ├── AC1_HoteldeVille_19900130_act.pdf
│ │ │ │ │ ├── AC1_HoteldeVille_19910308_act.pdf
│ │ │ │ │ ├── AC1_MaisonDoria_19351007_act.pdf
│ │ │ │ │ ├── AC1_Maisonforte_19870115_act.pdf
│ │ │ │ │ ├── AC1_Maisonforte_20070109_act.pdf
│ │ │ │ │ ├── AC1_PalaisFesch_19761102_act.pdf
│ │ │ │ │ ├── AC1_PontdeZaglia_19900626_act.pdf
│ │ │ │ │ ├── AC1_SitedeCapula_19901206_act.pdf
│ │ │ │ │ ├── AC1_Statuemenhir_20111221_act.pdf
│ │ │ │ │ ├── AC1_TourdOmigna_19910308_act.pdf
│ │ │ │ │ ├── AC1_TourdeFautea_19921027_act.pdf
│ │ │ │ │ ├── AC1_TourdeFigari_19950124_act.pdf
│ │ │ │ │ ├── AC1_TourdePorto_19460622_act.pdf
│ │ │ │ │ ├── AC1_FortindeTizzano_19850906_act.pdf
│ │ │ │ │ ├── AC1_MaisonPeraldi_19850906_act.pdf
│ │ │ │ │ ├── AC1_PalaisLantivy_19900130_act.pdf
│ │ │ │ │ ├── AC1_TourdeColomba_19520307_act.pdf
│ │ │ │ │ ├── AC1_TourdePinarello_19920804_act.pdf
│ │ │ │ │ ├── AC1_TourdeRoccapina_19940729_act.pdf
│ │ │ │ │ ├── AC1_TourdeSenetosa_19921027_act.pdf
│ │ │ │ │ ├── AC1_TourdelIsolella_19920804_act.pdf
│ │ │ │ │ ├── AC1_TourduCapitello_19910308_act.pdf
│ │ │ │ │ ├── AC1_ToursanCipriano_19950124_act.pdf
│ │ │ │ │ ├── AC1_ChapelleImperiale_19240722_act.pdf
│ │ │ │ │ ├── AC1_ChapelledesGrecs_19270309_act.pdf
│ │ │ │ │ ├── AC1_ChateaudelaPunta_19770207_act.pdf
│ │ │ │ │ ├── AC1_CitadelledAjaccio_19750718_act.pdf
│ │ │ │ │ ├── AC1_DomainedesMilelli_19580214_act.pdf
│ │ │ │ │ ├── AC1_FortindeGirolata_20131023_act.pdf
│ │ │ │ │ ├── AC1_HotelPalaceCyrnos_19901112_act.pdf
│ │ │ │ │ ├── AC1_LazaretdAspretto_19770316_act.pdf
│ │ │ │ │ ├── AC1_OratoireSaintRoch_19850906_act.pdf
│ │ │ │ │ ├── AC1_PontASpinaCavallu_19761022_act.pdf
│ │ │ │ │ ├── AC1_AncienneusineAlban_19921027_act.pdf
│ │ │ │ │ ├── AC1_CastellodeContorba_20100330_act.pdf
│ │ │ │ │ ├── AC1_CathedraleNotreDame_19061030_act.pdf
│ │ │ │ │ ├── AC1_ChapelleSainteMarie_19760715_act.pdf
│ │ │ │ │ ├── AC1_ChateaudeVicodOrnano_20120510_act.pdf
│ │ │ │ │ ├── AC1_CitadelledeBonifacio_19291024_act.pdf
│ │ │ │ │ ├── AC1_CouventSaintAntoine_19910308_act.pdf
│ │ │ │ │ ├── AC1_DolmendeFontanaccia_19000101_act.pdf
│ │ │ │ │ ├── AC1_EgliseSaintDominique_18750101_act.pdf
│ │ │ │ │ ├── AC1_EscalierduRoidAragon_19940422_act.pdf
│ │ │ │ │ ├── AC1_GrandHoteldAjaccio_19920317_act.pdf
│ │ │ │ │ ├── AC1_HotelLesRochesRouges_19910308_act.pdf
│ │ │ │ │ ├── AC1_MenhirdeCampodiLuogo_18620101_act.pdf
│ │ │ │ │ ├── AC1_MoulindeGuardienna_19870729_act.pdf
│ │ │ │ │ ├── AC1_PontgenoisdePianella_19761129_act.pdf
│ │ │ │ │ ├── AC1_PuitsSaintBarthelemy_19940422_act.pdf
│ │ │ │ │ ├── AC1_TourGenoisedeSagone_19740419_act.pdf
│ │ │ │ │ ├── AC1_AncienPalaisEpiscopal_19841221_act.pdf
│ │ │ │ │ ├── AC1_CasernegenoiseMontlaur_19940422_act.pdf
│ │ │ │ │ ├── AC1_CathedraleSaintAppien_19890904_act.pdf
│ │ │ │ │ ├── AC1_DeuxmenhirsduRizzanese_19000101_act.pdf
│ │ │ │ │ ├── AC1_MenhirdeVaccilVecchio_18621231_act.pdf
│ │ │ │ │ ├── AC1_OrangeraiedePortiglio_20161012_act.pdf
│ │ │ │ │ ├── AC1_ParcellesditesdeFrasso_19870602_act.pdf
│ │ │ │ │ ├── AC1_PontgenoisdeZippitoli_19770215_act.pdf
│ │ │ │ │ ├── AC1_AnciencouventSaintJulien_19740828_act.pdf
│ │ │ │ │ ├── AC1_AncienneegliseSaintJean_19301229_act.pdf
│ │ │ │ │ ├── AC1_EgliseSaintJeanBaptiste_19760723_act.pdf
│ │ │ │ │ ├── AC1_EgliseSainteMarieMajeure_19820921_act.pdf
│ │ │ │ │ ├── AC1_EgliseSantaMariaAssunta_19810423_act.pdf
│ │ │ │ │ ├── AC1_FigureantiquedAppriciani_18400101_act.pdf
│ │ │ │ │ ├── AC1_MaisonCharlesdeRoccaSerra_20140407_act.pdf
│ │ │ │ │ ├── AC1_MaisondeNapoleonBonaparte_19240423_act.pdf
│ │ │ │ │ ├── AC1_OratoireSaintJeanBaptiste_19850906_act.pdf
│ │ │ │ │ ├── AC1_PontiVicchiusurleTaravo_19761110_act.pdf
│ │ │ │ │ ├── AC1_VillagemedievaldelOrtolo_20090410_act.pdf
│ │ │ │ │ ├── AC1_AncienCouventSaintDominique_19900130_act.pdf
│ │ │ │ │ ├── AC1_AnciencouventSaintFrancois_19761231_act.pdf
│ │ │ │ │ ├── AC1_ChapelleSanPietrodiPanicali_20091013_act.pdf
│ │ │ │ │ ├── AC1_CouventSaintFrancoisdIstria_19930623_act.pdf
│ │ │ │ │ ├── AC1_MaisonPhilippedeRoccaSerra_20140407_act.pdf
│ │ │ │ │ ├── AC1_SitedelErmitagedelaTrinite_20160406_act.pdf
│ │ │ │ │ ├── AC1_TourdeCapoNerooudeCapuNeru_19940422_act.pdf
│ │ │ │ │ ├── AC1_AlignementdemenhirsdePagliajo_19741023_act.pdf
│ │ │ │ │ ├── AC1_ChapelleSanQuilicudeMontilati_19770707_act.pdf
│ │ │ │ │ ├── AC1_ChapellefunerairePozzodiBorgo_20120514_act.pdf
│ │ │ │ │ ├── AC1_EchauguetteetleRempartattenant_19841221_act.pdf
│ │ │ │ │ ├── AC1_EglisedeSantaMariaFiganiella_19270829_act.pdf
│ │ │ │ │ ├── AC1_EgliseparoissialeSaintGeorges_19890213_act.pdf
│ │ │ │ │ ├── AC1_EgliseparoissialeSaintNicolas_19900130_act.pdf
│ │ │ │ │ ├── AC1_EgliseparoissialeSaintSpiridon_19900630_act.pdf
│ │ │ │ │ ├── AC1_EgliseparoissialeSainteMarie_19850906_act.pdf
│ │ │ │ │ ├── AC1_EgliseparoissialedelAssomption_19890213_act.pdf
│ │ │ │ │ ├── AC1_RuinesdelamaisonSampieroCorso_20120625_act.pdf
│ │ │ │ │ ├── AC1_SitearcheologiquedeCucuruzzu_19821109_act.pdf
│ │ │ │ │ ├── AC1_TourdeCapodiMurooudeCapudiMuru_19940422_act.pdf
│ │ │ │ │ ├── AC1_ChapelleSaintErasmeouSantErasmu_19930105_act.pdf
│ │ │ │ │ ├── AC1_ChapelleSaintJeanBaptistedePruno_19770719_act.pdf
│ │ │ │ │ ├── AC1_ImmeubledelappartementBaciocchi_19921027_act.pdf
│ │ │ │ │ ├── AC1_AbriPrehistoriquedAraguinaSennola_19880901_act.pdf
│ │ │ │ │ ├── AC1_AnciennechapelleSanAgostinodeChera_19800206_act.pdf
│ │ │ │ │ ├── AC1_AncienneegliseSanGiovanniBattista_19770729_act.pdf
│ │ │ │ │ ├── AC1_BaptisterepaleochretiendeSaintJean_20130214_act.pdf
│ │ │ │ │ ├── AC1_MonumentcommemoratifdeSampieroCorso_20080208_act.pdf
│ │ │ │ │ └── AC1_SitearcheologiqueICalanchiSaparata_19901206_act.pdf
│ │ │ ├── 110068012_PM3_28_20161104
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── PM3_ASSIETTE_SUP_S_028.cpg
│ │ │ │ │ ├── PM3_GENERATEUR_SUP_S_028.cpg
│ │ │ │ │ ├── SERVITUDE_ACTE_SUP_028.dbf
│ │ │ │ │ ├── ACTE_SUP_028.dbf
│ │ │ │ │ ├── SERVITUDE_028.dbf
│ │ │ │ │ ├── GESTIONNAIRE_SUP_028.dbf
│ │ │ │ │ ├── PM3_ASSIETTE_SUP_S_028.dbf
│ │ │ │ │ ├── PM3_ASSIETTE_SUP_S_028.shp
│ │ │ │ │ ├── PM3_ASSIETTE_SUP_S_028.shx
│ │ │ │ │ ├── PM3_GENERATEUR_SUP_S_028.dbf
│ │ │ │ │ ├── PM3_GENERATEUR_SUP_S_028.shp
│ │ │ │ │ └── PM3_GENERATEUR_SUP_S_028.shx
│ │ │ │ └── Actes
│ │ │ │ │ ├── PM3_Brou_Vouzelaud_act.pdf
│ │ │ │ │ ├── PM3_Coltainville_Primagaz_act.pdf
│ │ │ │ │ └── PM3_Auneau_Legendre_Delpierre_act.pdf
│ │ │ ├── 200078244_SCOT_20180218
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── 200078244_PERIMETRE_SCOT_20180218.cpg
│ │ │ │ │ ├── 200078244_PERIMETRE_SCOT_20180218.dbf
│ │ │ │ │ ├── 200078244_PERIMETRE_SCOT_20180218.shp
│ │ │ │ │ └── 200078244_PERIMETRE_SCOT_20180218.shx
│ │ │ │ ├── 200078244_DOC_URBA_20180218.dbf
│ │ │ │ ├── 200078244_DOC_URBA_COM_20180218.dbf
│ │ │ │ └── Pieces_ecrites
│ │ │ │ │ ├── 2_Autres_documents
│ │ │ │ │ └── empty.pdf
│ │ │ │ │ ├── 1_SCOT
│ │ │ │ │ ├── 200078244_doo_20180218.pdf
│ │ │ │ │ ├── 200078244_padd_20180218.pdf
│ │ │ │ │ ├── 200078244_rapport_1_20180218.pdf
│ │ │ │ │ └── 200078244_rapport_2_20180218.pdf
│ │ │ │ │ └── 0_Procedure
│ │ │ │ │ └── 200078244_procedure_20180218.pdf
│ │ │ ├── 50545_CC_20130902
│ │ │ │ ├── DOC_URBA.dbf
│ │ │ │ ├── DOC_URBA_COM.dbf
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── SECTEUR_CC.dbf
│ │ │ │ │ ├── SECTEUR_CC.shp
│ │ │ │ │ └── SECTEUR_CC.shx
│ │ │ │ └── Pieces_ecrites
│ │ │ │ │ ├── Annexes
│ │ │ │ │ └── 50545_plan_1_20130902.pdf
│ │ │ │ │ └── Rapport_de_presentation
│ │ │ │ │ └── 50545_rapport_20130902.pdf
│ │ │ ├── 50545_CC_20140101
│ │ │ │ ├── DOC_URBA.dbf
│ │ │ │ ├── DOC_URBA_COM.dbf
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ └── SECTEUR_CC.csv
│ │ │ │ └── Pieces_ecrites
│ │ │ │ │ ├── 4_Annexes
│ │ │ │ │ └── 50545_plan_1_20130902.pdf
│ │ │ │ │ └── 1_Rapport_de_presentation
│ │ │ │ │ └── 50545_rapport_20130902.pdf
│ │ │ ├── 41175_PLU_20140603
│ │ │ │ ├── DOC_URBA.dbf
│ │ │ │ ├── DOC_URBA_COM.dbf
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── ZONE_URBA.dbf
│ │ │ │ │ ├── ZONE_URBA.shp
│ │ │ │ │ ├── ZONE_URBA.shx
│ │ │ │ │ ├── PRESCRIPTION_LIN.dbf
│ │ │ │ │ ├── PRESCRIPTION_LIN.shp
│ │ │ │ │ ├── PRESCRIPTION_LIN.shx
│ │ │ │ │ ├── PRESCRIPTION_PCT.dbf
│ │ │ │ │ ├── PRESCRIPTION_PCT.shp
│ │ │ │ │ ├── PRESCRIPTION_PCT.shx
│ │ │ │ │ ├── PRESCRIPTION_SURF.dbf
│ │ │ │ │ ├── PRESCRIPTION_SURF.shp
│ │ │ │ │ └── PRESCRIPTION_SURF.shx
│ │ │ │ └── Pieces_ecrites
│ │ │ │ │ ├── 2_PADD
│ │ │ │ │ └── 41175_padd_20140603.pdf
│ │ │ │ │ ├── 4_Annexes
│ │ │ │ │ ├── 41175_liste_sup_20140603.pdf
│ │ │ │ │ ├── 41175_info_lin_19_aep_20140603.pdf
│ │ │ │ │ ├── 41175_classement_sonore_20140603.pdf
│ │ │ │ │ ├── 41175_info_zone_humide_20140603.pdf
│ │ │ │ │ ├── 41175_annexes_sanitaires_20140603.pdf
│ │ │ │ │ ├── 41175_reglement_graphique_1_20140603.pdf
│ │ │ │ │ ├── 41175_reglement_graphique_2_20140603.pdf
│ │ │ │ │ └── 41175_reglement_graphique_3_20140603.pdf
│ │ │ │ │ └── 3_Reglement
│ │ │ │ │ └── 41175_reglement_20140603.pdf
│ │ │ ├── 200011781_PLUi_20180101
│ │ │ │ ├── DOC_URBA.dbf
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── ZONE_URBA.dbf
│ │ │ │ │ ├── ZONE_URBA.shp
│ │ │ │ │ └── ZONE_URBA.shx
│ │ │ │ └── Pieces_ecrites
│ │ │ │ │ ├── 2_PADD
│ │ │ │ │ └── 200011781_padd_20180101.pdf
│ │ │ │ │ ├── 4_Annexes
│ │ │ │ │ ├── 200011781_plan_SUP_20180101.pdf
│ │ │ │ │ ├── 200011781_liste_SUP_20180101.pdf
│ │ │ │ │ ├── 200011781_info_surf_04_20180101.pdf
│ │ │ │ │ ├── 200011781_info_lin_19_aep_20180101.pdf
│ │ │ │ │ └── 200011781_info_lin_19_eu_20180101.pdf
│ │ │ │ │ ├── 0_Procedure
│ │ │ │ │ └── 200011781_procedure_20180101.pdf
│ │ │ │ │ └── 3_Reglement
│ │ │ │ │ └── 200011781_reglement_20180101.pdf
│ │ │ ├── 19182_CC_20150517
│ │ │ │ ├── 19182_DOC_URBA_COM_20150517.dbf
│ │ │ │ ├── 19182_DOC_URBA_20150517.dbf
│ │ │ │ ├── Donnees_geographiques
│ │ │ │ │ ├── 19182_SECTEUR_CC_20150517.ID
│ │ │ │ │ ├── 19182_SECTEUR_CC_20150517.DAT
│ │ │ │ │ ├── 19182_SECTEUR_CC_20150517.IND
│ │ │ │ │ └── 19182_SECTEUR_CC_20150517.MAP
│ │ │ │ └── Pieces_ecrites
│ │ │ │ │ ├── 4_Annexes
│ │ │ │ │ ├── 19182_plan_sup_20150517.pdf
│ │ │ │ │ ├── 19182_liste_sup_20150517.pdf
│ │ │ │ │ └── 19182_sectorisation_graphique_20150517.pdf
│ │ │ │ │ ├── 0_Procedure
│ │ │ │ │ └── 19182_procedure_20150517.pdf
│ │ │ │ │ └── 1_Rapport_de_presentation
│ │ │ │ │ ├── 19182_rapport_1_20150517.pdf
│ │ │ │ │ ├── 19182_rapport_2_20150517.pdf
│ │ │ │ │ └── 19182_rapport_3_20150517.pdf
│ │ │ └── 213000896_INT1_83044_20160130
│ │ │ │ ├── Actes
│ │ │ │ └── INT1_Acte_act.pdf
│ │ │ │ └── Donnees_geographiques
│ │ │ │ ├── ACTE_SUP.dbf
│ │ │ │ ├── SERVITUDE.dbf
│ │ │ │ ├── GESTIONNAIRE_SUP.dbf
│ │ │ │ ├── INT1_ASSIETTE_SUP_S.shp
│ │ │ │ ├── INT1_ASSIETTE_SUP_S.shx
│ │ │ │ ├── INT1_GENERATEUR_SUP_S.dbf
│ │ │ │ ├── INT1_GENERATEUR_SUP_S.shp
│ │ │ │ ├── INT1_GENERATEUR_SUP_S.shx
│ │ │ │ └── SERVITUDE_ACTE_SUP.dbf
│ │ │ ├── SUP
│ │ │ └── SERVITUDE_041.DAT
│ │ │ └── jointure_sup
│ │ │ ├── one2one
│ │ │ └── DATA
│ │ │ │ ├── SERVITUDE_ACTE_SUP.csv
│ │ │ │ └── GESTIONNAIRE_SUP.csv
│ │ │ ├── idgen_not_unique
│ │ │ └── DATA
│ │ │ │ ├── SERVITUDE_ACTE_SUP.csv
│ │ │ │ └── GESTIONNAIRE_SUP.csv
│ │ │ └── duplicated
│ │ │ └── DATA
│ │ │ ├── GESTIONNAIRE_SUP.csv
│ │ │ └── SERVITUDE_ACTE_SUP.csv
│ └── main
│ │ └── resources
│ │ ├── META-INF
│ │ └── services
│ │ │ ├── fr.ign.validator.plugin.Plugin
│ │ │ └── fr.ign.validator.command.Command
│ │ └── codes
│ │ └── DocumentType.properties
└── .gitignore
├── validator-plugin-pcrs
├── src
│ ├── test
│ │ └── resources
│ │ │ ├── .gitkeep
│ │ │ └── documents
│ │ │ └── pcrs-lyon-01
│ │ │ ├── unexpected_data.dbf
│ │ │ ├── unexpeted_file_without_extension
│ │ │ └── iam_metadata.xml
│ └── main
│ │ └── resources
│ │ └── META-INF
│ │ └── services
│ │ └── fr.ign.validator.plugin.Plugin
└── .gitignore
├── validator-plugin-dgpr
├── src
│ ├── test
│ │ └── resources
│ │ │ ├── config
│ │ │ └── .gitkeep
│ │ │ └── documents
│ │ │ ├── .gitkeep
│ │ │ ├── TRI_JTEST_TOPO_SIG_DI
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_TRI_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_TRI_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_TRI_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ECOUL_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ECOUL_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ECOUL_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_COMMUNE_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_COMMUNE_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_COMMUNE_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_COTE_L_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_COTE_L_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_DEB_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_DEB_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_DEB_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_QUARTIER_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_QUARTIER_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_QUARTIER_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_SURALEA_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_SURALEA_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_SURALEA_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_INOND_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_SOUST_INOND_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shx
│ │ │ └── N_TRI_JTEST_TOPO_REL_HYDRO_INOND_027.dbf
│ │ │ └── TRI_JTEST_TOPO_error_SIG_DI
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.cpg
│ │ │ ├── N_TRI_JTEST_TOPO_TRI_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_TRI_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_TRI_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ECOUL_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ECOUL_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ECOUL_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_COMMUNE_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_COMMUNE_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_COMMUNE_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_COTE_L_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_COTE_L_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_DEB_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_DEB_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_DEB_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_QUARTIER_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_QUARTIER_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_QUARTIER_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_SURALEA_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_SURALEA_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_SURALEA_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_INOND_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shp
│ │ │ ├── N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shx
│ │ │ ├── N_TRI_JTEST_TOPO_REL_HYDRO_INOND_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_SOUST_INOND_S_027.dbf
│ │ │ ├── N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shp
│ │ │ └── N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shx
│ └── main
│ │ └── resources
│ │ └── META-INF
│ │ └── services
│ │ └── fr.ign.validator.plugin.Plugin
└── .gitignore
├── doc
├── img
│ ├── principe.jpg
│ ├── principe.odg
│ ├── characters-validation.odg
│ └── characters-validation.png
├── uml
│ ├── metadata.dia
│ └── metadata.png
└── plugin-cnig
│ └── keywords.ods
├── assets
└── css
│ └── style.scss
├── .gitignore
└── validator-cli
└── .gitignore
/_config.yml:
--------------------------------------------------------------------------------
1 | theme: jekyll-theme-slate
--------------------------------------------------------------------------------
/validator-core/src/test/resources/csv/empty.csv:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/jexiste.txt:
--------------------------------------------------------------------------------
1 | file
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-plugin-pcrs/src/test/resources/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/config/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/geometry/output.csv:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_latin1/PRESCRIPTION_PCT.cpg:
--------------------------------------------------------------------------------
1 | latin1
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_utf8/PRESCRIPTION_PCT.cpg~:
--------------------------------------------------------------------------------
1 | latin1
--------------------------------------------------------------------------------
/validator-core/src/test/resources/csv/sample-with-empty.csv:
--------------------------------------------------------------------------------
1 | a,b,c
2 | ligne,"",
3 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/documents/commune-sample/a_directory/a_file.pdf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-plugin-pcrs/src/test/resources/documents/pcrs-lyon-01/unexpected_data.dbf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/metadata/not-an-xml-file.xml:
--------------------------------------------------------------------------------
1 | this is not an xml file
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.cpg:
--------------------------------------------------------------------------------
1 | ISO-8859-1
--------------------------------------------------------------------------------
/doc/img/principe.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/doc/img/principe.jpg
--------------------------------------------------------------------------------
/doc/img/principe.odg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/doc/img/principe.odg
--------------------------------------------------------------------------------
/doc/uml/metadata.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/doc/uml/metadata.dia
--------------------------------------------------------------------------------
/doc/uml/metadata.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/doc/uml/metadata.png
--------------------------------------------------------------------------------
/validator-core/src/test/resources/csv/sample-utf8.csv:
--------------------------------------------------------------------------------
1 | a,b,c
2 | a1,b1,c1
3 | aé2,bé2,cé2
4 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/csv/DUMMY.csv:
--------------------------------------------------------------------------------
1 | A,B,WKT
2 | Valeur A,Valeur B1,POINT(3.0 4.0)
3 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/csv/not-trimmed.csv:
--------------------------------------------------------------------------------
1 | A,B
2 | valeur A , valeur B
3 |
--------------------------------------------------------------------------------
/doc/plugin-cnig/keywords.ods:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/doc/plugin-cnig/keywords.ods
--------------------------------------------------------------------------------
/validator-core/src/test/resources/documents/commune-sample/not-a-metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/241800432_DOC_URBA_20200128.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/doc/img/characters-validation.odg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/doc/img/characters-validation.odg
--------------------------------------------------------------------------------
/doc/img/characters-validation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/doc/img/characters-validation.png
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/241800432_DOC_URBA_COM_20200128.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.cpg:
--------------------------------------------------------------------------------
1 | 1252
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/main/resources/META-INF/services/fr.ign.validator.plugin.Plugin:
--------------------------------------------------------------------------------
1 | fr.ign.validator.cnig.CnigPlugin
2 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ASSIETTE_SUP_S.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GENERATEUR_SUP_S.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.cpg:
--------------------------------------------------------------------------------
1 | 1252
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.cpg:
--------------------------------------------------------------------------------
1 | 1252
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/ce_fichier_nest_pas_prevu.csv:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/main/resources/META-INF/services/fr.ign.validator.plugin.Plugin:
--------------------------------------------------------------------------------
1 | fr.ign.validator.dgpr.DgprPlugin
2 |
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-pcrs/src/main/resources/META-INF/services/fr.ign.validator.plugin.Plugin:
--------------------------------------------------------------------------------
1 | fr.ign.validator.pcrs.PcrsPlugin
2 |
--------------------------------------------------------------------------------
/assets/css/style.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 |
4 | @import "{{ site.theme }}";
5 |
6 | #main_content {
7 | max-width: 90%;
8 | }
9 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_ASSIETTE_SUP_S_028.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_GENERATEUR_SUP_S_028.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.cpg:
--------------------------------------------------------------------------------
1 | 1252
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.cpg:
--------------------------------------------------------------------------------
1 | 1252
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.cpg:
--------------------------------------------------------------------------------
1 | 1252
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_ZONE_URBA_20200128.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Donnees_geographiques/200078244_PERIMETRE_SCOT_20180218.cpg:
--------------------------------------------------------------------------------
1 | ISO 88591
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_LIN_20200128.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_PCT_20200128.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_SURF_20200128.cpg:
--------------------------------------------------------------------------------
1 | UTF-8
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/POINT.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/POINT.shp
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/POINT.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/POINT.shx
--------------------------------------------------------------------------------
/validator-core/src/test/resources/documents/adresse-multiple/adresse_1.csv:
--------------------------------------------------------------------------------
1 | id,adresse
2 | 1,"adresse bidon, Paris"
3 | 5,"adresse du 15ième, Paris"
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # dev tools
2 | .project
3 | .settings
4 | /.vscode/
5 | # build
6 | /target/
7 | *.log
8 | /validator.launch
9 | /*/.factorypath
10 |
11 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/csv/sample-latin1.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/csv/sample-latin1.csv
--------------------------------------------------------------------------------
/validator-core/src/test/resources/dbf/SPECIAL_CHARS.DBF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/dbf/SPECIAL_CHARS.DBF
--------------------------------------------------------------------------------
/validator-core/src/test/resources/documents/adresse-multiple/adresse_2.csv:
--------------------------------------------------------------------------------
1 | id,adresse
2 | 2,"adresse au soleil, Montpellier"
3 | 3,"adresse sympa, Montpellier"
4 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/documents/commune-sample/commune.csv:
--------------------------------------------------------------------------------
1 | INSEE,NOM,WKT
2 | 10001,Commune 1,"POINT(3.0 4.0)"
3 | 10002,Commune 2,"POINT(5.0 5.0)"
4 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/replacer/sample.csv:
--------------------------------------------------------------------------------
1 | source,target,comment
2 | \u009c,œ,STRING TERMINATOR replaced by LATIN SMALL LIGATURE OE
3 | ê,e,Test
4 |
--------------------------------------------------------------------------------
/validator-plugin-pcrs/src/test/resources/documents/pcrs-lyon-01/unexpeted_file_without_extension:
--------------------------------------------------------------------------------
1 | this file will be ignore
2 | it has not a correct extension
3 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/dbf/SINGLE_COLUMN_BUG.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/dbf/SINGLE_COLUMN_BUG.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_titres_pieces_ecrites_20171013.csv:
--------------------------------------------------------------------------------
1 | FICHIER,TITRE
2 | filename,string
3 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/bug-backslash/source.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/bug-backslash/source.dbf
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/dbf_latin1/ACTE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/dbf_latin1/ACTE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/SUP/SERVITUDE_041.DAT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/SUP/SERVITUDE_041.DAT
--------------------------------------------------------------------------------
/validator-core/src/main/resources/simplify/ISO-8859-1.csv:
--------------------------------------------------------------------------------
1 | before,after,comment
2 | œ,oe,LATIN SMALL LIGATURE OE replaced by oe
3 | Œ,OE,LATIN CAPITAL LIGATURE OE replaced by OE
4 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/bug-backslash/source.csv:
--------------------------------------------------------------------------------
1 | URLFIC,INSEE
2 | "\\ALPICITE-NAS\etudes\ORNON\ELABORATION DU PLU\14.GPU\GPU ORNON\38285_PLU_20171018\",38285
3 |
4 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/gml/INVALID.gml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/validator-core/src/main/resources/codes/GeometryErrorCode.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/main/resources/codes/GeometryErrorCode.properties
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_utf8/PRESCRIPTION_PCT.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/shp_utf8/PRESCRIPTION_PCT.dbf
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_utf8/PRESCRIPTION_PCT.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/shp_utf8/PRESCRIPTION_PCT.shp
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_utf8/PRESCRIPTION_PCT.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/shp_utf8/PRESCRIPTION_PCT.shx
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_latin1/PRESCRIPTION_PCT.ID:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_latin1/PRESCRIPTION_PCT.ID
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_latin1/ZONE_URBA_41003.DAT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_latin1/ZONE_URBA_41003.DAT
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_latin1/ZONE_URBA_41003.ID:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_latin1/ZONE_URBA_41003.ID
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_latin1/ZONE_URBA_41003.MAP:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_latin1/ZONE_URBA_41003.MAP
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_utf8/PRESCRIPTION_PCT.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_utf8/PRESCRIPTION_PCT.dat
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_utf8/PRESCRIPTION_PCT.id:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_utf8/PRESCRIPTION_PCT.id
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_utf8/PRESCRIPTION_PCT.map:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_utf8/PRESCRIPTION_PCT.map
--------------------------------------------------------------------------------
/validator-core/src/test/resources/csv/AC2_ASSIETTE_SUP_S_014_latin1.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/csv/AC2_ASSIETTE_SUP_S_014_latin1.csv
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_latin1/PRESCRIPTION_PCT.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/shp_latin1/PRESCRIPTION_PCT.dbf
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_latin1/PRESCRIPTION_PCT.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/shp_latin1/PRESCRIPTION_PCT.shp
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/shp_latin1/PRESCRIPTION_PCT.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/shp_latin1/PRESCRIPTION_PCT.shx
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_latin1/PRESCRIPTION_PCT.DAT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_latin1/PRESCRIPTION_PCT.DAT
--------------------------------------------------------------------------------
/validator-core/src/test/resources/data/tab_latin1/PRESCRIPTION_PCT.MAP:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/data/tab_latin1/PRESCRIPTION_PCT.MAP
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/main/resources/codes/DocumentType.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/main/resources/codes/DocumentType.properties
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/geometry/broken_geometries.csv:
--------------------------------------------------------------------------------
1 | id,geom,reason
2 | 1,"POLYGON((0 0, 0 1, 2 1, 2 2, 1 2, 1 0, 0 0))",non-closed ring
3 | 2,"POLYGON non wkt",non-parsable
4 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/main/resources/META-INF/services/fr.ign.validator.command.Command:
--------------------------------------------------------------------------------
1 | fr.ign.validator.cnig.command.CnigExtractIdgestCommand
2 | fr.ign.validator.cnig.command.DocumentGeometryCommand
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/geometry/fair_geometries.csv:
--------------------------------------------------------------------------------
1 | id,geom
2 | 1,"POLYGON((0 0, 0 1, 1 1, 1 0, 0 0))"
3 | 2,"POLYGON((1 0, 1 1, 2 1, 2 0, 1 0))"
4 | 3,"POLYGON((2 0, 3 1, 4 0, 2 0))"
--------------------------------------------------------------------------------
/validator-core/.gitignore:
--------------------------------------------------------------------------------
1 | /.classpath
2 | /.project
3 | /.settings/
4 |
5 | /bin/
6 | /target/
7 | /data/
8 |
9 | /pom.xml.releaseBackup
10 |
11 | /.apt_generated/
12 | /.apt_generated_tests/
13 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/emprise-command-options/emprise.wkt:
--------------------------------------------------------------------------------
1 | POLYGON ((1.186438253 47.90390196, 1.098884284 47.90390196, 1.098884284 47.83421197, 1.186438253 47.83421197, 1.186438253 47.90390196))
--------------------------------------------------------------------------------
/validator-cli/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 | /.classpath
3 | /.project
4 | /.settings/
5 | /dependency-reduced-pom.xml
6 |
7 | /release.properties
8 |
9 |
10 | /.apt_generated/
11 | /.apt_generated_tests/
12 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/DOC_URBA.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/DOC_URBA.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/DOC_URBA_COM.dbf:
--------------------------------------------------------------------------------
1 | _ a IDURBA C INSEE C
50545_20130902 50545
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/DOC_URBA.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/DOC_URBA.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/DOC_URBA_COM.dbf:
--------------------------------------------------------------------------------
1 | _ a IDURBA C INSEE C
50545_20130902 50545
--------------------------------------------------------------------------------
/validator-plugin-pcrs/src/test/resources/documents/pcrs-lyon-01/iam_metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | a random xml file is confused as metadata
4 |
5 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/documents/adresse-multiple/adresse_4.csv:
--------------------------------------------------------------------------------
1 | id,champ_complementaire
2 | 6,"note peu fiable, d'un fichier peu fiable"
3 | 7,"attention cet identifiant existe dans un autre fichier"
4 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/SCOT.prj:
--------------------------------------------------------------------------------
1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]]
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/DOC_URBA.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/DOC_URBA.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/DOC_URBA_COM.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/DOC_URBA_COM.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/jointure_sup/one2one/DATA/SERVITUDE_ACTE_SUP.csv:
--------------------------------------------------------------------------------
1 | IDSUP,IDACTE
2 | 19820128,19820128
3 | 19240922,19240922
4 | 19771122,19771122
5 | 19890412,19890412
6 | 19230309,19230309
7 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/DOC_URBA.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/DOC_URBA.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/Donnees_geographiques/SECTEUR_CC.csv:
--------------------------------------------------------------------------------
1 | INSEE,DATAPPRO,DESTDOMI,DATVALID,TYPESECT,LIBELLE,WKT,NOMFIC,URLFIC,FERMRECO
2 | 50545,20130902,01,20100702,01,C,,,,
3 |
--------------------------------------------------------------------------------
/validator-core/src/test/resources/geopackage/pprt_69dreal20090005/pprt_69dreal20090005.gpkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-core/src/test/resources/geopackage/pprt_69dreal20090005/pprt_69dreal20090005.gpkg
--------------------------------------------------------------------------------
/validator-plugin-cnig/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 | /.project
3 | /.settings
4 | /bin/
5 | /config
6 | /.classpath
7 | /data
8 | /test.sh
9 |
10 | /pom.xml.releaseBackup
11 |
12 | /.apt_generated/
13 | /.apt_generated_tests/
14 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/jointure_sup/idgen_not_unique/DATA/SERVITUDE_ACTE_SUP.csv:
--------------------------------------------------------------------------------
1 | IDSUP,IDACTE
2 | 19820128,19820128
3 | 19240922,19240922
4 | 19771122,19771122
5 | 19890412,19890412
6 | 19230309,19230309
7 |
--------------------------------------------------------------------------------
/validator-plugin-pcrs/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 | /.project
3 | /.settings
4 | /bin/
5 | /config
6 | /.classpath
7 | /data
8 | /test.sh
9 |
10 | /pom.xml.releaseBackup
11 |
12 | /.apt_generated/
13 | /.apt_generated_tests/
14 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/19182_DOC_URBA_COM_20150517.dbf:
--------------------------------------------------------------------------------
1 | a $ IDURBA C INSEE C
19182_CC_20150517 19182
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/251702833_doo_20121220.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/251702833_scot/251702833_doo_20121220.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/251702833_padd_20121220.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/251702833_scot/251702833_padd_20121220.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/19182_DOC_URBA_20150517.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/19182_DOC_URBA_20150517.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/251702833_scot/251702833_rapport_20121220.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/251702833_scot/251702833_rapport_20121220.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/241800432_DOC_URBA_COM_20200128.dbf:
--------------------------------------------------------------------------------
1 | _ a $ IDURBA C INSEE C
241800432_PLUI_20200128 18275
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/30014_DOC_URBA_20171013.DBF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/30014_DOC_URBA_20171013.DBF
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/geometry/dubious_geometries.csv:
--------------------------------------------------------------------------------
1 | id,geom,reason
2 | 1,"POLYGON((0 0, 0 1, 2 1, 2 2, 1 2, 1 0, 0 0))",self intersection
3 | 2,"POLYGON((0 0, 0 1, 0 2, 0 0))",line
4 | 3,"POLYGON((0 0, 0 0, 0 0, 0 0))",point
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/jointure_sup/duplicated/DATA/GESTIONNAIRE_SUP.csv:
--------------------------------------------------------------------------------
1 | COURRIEL,ADRESSE,NOMCORRES,IDGEST,NOMGEST,NUMTEL
2 | "",,,130014368,"DEAL Direction de l'Environnement, de l'Aménagement et du Logement de la Réunion",
3 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/30014_DOC_URBA_COM_20171013.DBF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/30014_DOC_URBA_COM_20171013.DBF
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/SERVITUDE_ACTE_SUP_028.dbf:
--------------------------------------------------------------------------------
1 | a IDSUP N IDACTE N
35.0035.00 36.0036.00 37.0037.00
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Actes/A5_ValMoselle_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Actes/A5_ValMoselle_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Actes/A5_ValMoselle_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Actes/A5_ValMoselle_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Actes/INT1_Acte_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Actes/INT1_Acte_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shx
--------------------------------------------------------------------------------
/validator-core/src/test/resources/custom-errors/config.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "name": "VALIDATOR_PROJECTION_INFO",
4 | "level": "INFO",
5 | "message": "The projection {CODE_PROJECTION} ({URI_PROJECTION}) is configured for the validation."
6 | }
7 | ]
8 |
9 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/200078244_DOC_URBA_20180218.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/200078244_DOC_URBA_20180218.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/241800432_DOC_URBA_20200128.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/241800432_DOC_URBA_20200128.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/2_PADD/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/2_PADD/Thumbs.db
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/Thumbs.db
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/ZONE_URBA.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/ZONE_URBA.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/ZONE_URBA.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/ZONE_URBA.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/ZONE_URBA.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/ZONE_URBA.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Donnees_geographiques/SECTEUR_CC.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Donnees_geographiques/SECTEUR_CC.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Donnees_geographiques/SECTEUR_CC.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Donnees_geographiques/SECTEUR_CC.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Donnees_geographiques/SECTEUR_CC.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Donnees_geographiques/SECTEUR_CC.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shx
--------------------------------------------------------------------------------
/validator-core/src/test/resources/documents/adresse-multiple/adresse_3.csv:
--------------------------------------------------------------------------------
1 | id,adresse,champ_complementaire
2 | 4,"adresse sous la pluie, Brest","info complémentaire 1"
3 | 7,"adresse d'un pub, Brest","attention cet identifiant (7) existe dans un autre fichier"
4 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Actes/PM3_Brou_Vouzelaud_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Actes/PM3_Brou_Vouzelaud_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/4_Annexes/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/4_Annexes/Thumbs.db
--------------------------------------------------------------------------------
/validator-plugin-dgpr/.gitignore:
--------------------------------------------------------------------------------
1 | /.project
2 | /.settings
3 | /.classpath
4 | /bin/
5 | /target
6 | /config
7 | /data
8 | /test.sh
9 |
10 | /pom.xml.releaseBackup
11 |
12 | /.apt_generated/
13 |
14 | /validator-plugin-*
15 | /.apt_generated_tests/
16 |
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_TRI_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maison_19270512_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maison_19270512_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maison_19351104_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maison_19351104_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Donnees_geographiques/ZONE_URBA.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Donnees_geographiques/ZONE_URBA.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Donnees_geographiques/ZONE_URBA.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Donnees_geographiques/ZONE_URBA.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Donnees_geographiques/ZONE_URBA.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Donnees_geographiques/ZONE_URBA.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/200078244_DOC_URBA_COM_20180218.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/200078244_DOC_URBA_COM_20180218.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/0_Procedure/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/0_Procedure/Thumbs.db
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/3_Reglement/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/3_Reglement/Thumbs.db
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ECOUL_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_ACTE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_ACTE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_ACTE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_ACTE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_SERVITUDE.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_SERVITUDE.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Filitosa_19801210_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Filitosa_19801210_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_LIN.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_LIN.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_LIN.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_LIN.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_LIN.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_LIN.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_PCT.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_PCT.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_PCT.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_PCT.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_PCT.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_PCT.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_SURF.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_SURF.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_SURF.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_SURF.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_SURF.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Donnees_geographiques/PRESCRIPTION_SURF.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_REL_HYDRO_INOND_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_SIG_DI/N_TRI_JTEST_TOPO_REL_HYDRO_INOND_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COMMUNE_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_COTE_L_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_DEB_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_QUARTIER_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SURALEA_S_027.shx
--------------------------------------------------------------------------------
/validator-core/src/test/resources/metadata/not-a-metadatafile.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Actes/PM3_Coltainville_Primagaz_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Actes/PM3_Coltainville_Primagaz_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/ACTE_SUP_028.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/ACTE_SUP_028.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/SERVITUDE_028.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/SERVITUDE_028.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_SERVITUDE.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_SERVITUDE.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HoteldeVille_19900130_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HoteldeVille_19900130_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HoteldeVille_19910308_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HoteldeVille_19910308_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonDoria_19351007_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonDoria_19351007_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maisonforte_19870115_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maisonforte_19870115_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maisonforte_20070109_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Maisonforte_20070109_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PalaisFesch_19761102_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PalaisFesch_19761102_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontdeZaglia_19900626_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontdeZaglia_19900626_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitedeCapula_19901206_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitedeCapula_19901206_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Statuemenhir_20111221_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_Statuemenhir_20111221_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdOmigna_19910308_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdOmigna_19910308_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeFautea_19921027_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeFautea_19921027_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeFigari_19950124_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeFigari_19950124_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdePorto_19460622_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdePorto_19460622_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ACTE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ACTE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_SERVITUDE.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_SERVITUDE.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/ACTE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/ACTE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/SERVITUDE.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/SERVITUDE.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/2_PADD/30014_padd_20141013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/2_PADD/30014_padd_20141013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/2_PADD/41175_padd_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/2_PADD/41175_padd_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_RISQ_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CHAMP_VIT_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_DCE_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_ECO_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_IPPC_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_STEU_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FAI_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_FOR_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ISO_HT_MOY_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_OUV_PROTEC_L_027.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_FortindeTizzano_19850906_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_FortindeTizzano_19850906_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonPeraldi_19850906_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonPeraldi_19850906_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PalaisLantivy_19900130_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PalaisLantivy_19900130_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeColomba_19520307_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeColomba_19520307_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdePinarello_19920804_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdePinarello_19920804_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeRoccapina_19940729_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeRoccapina_19940729_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeSenetosa_19921027_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeSenetosa_19921027_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdelIsolella_19920804_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdelIsolella_19920804_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourduCapitello_19910308_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourduCapitello_19910308_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ToursanCipriano_19950124_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ToursanCipriano_19950124_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.ID:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.ID
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/2_Autres_documents/empty.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/2_Autres_documents/empty.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.idx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.idx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_PCT_20171013.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Pieces_ecrites/Annexes/50545_plan_1_20130902.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Pieces_ecrites/Annexes/50545_plan_1_20130902.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/Pieces_ecrites/4_Annexes/50545_plan_1_20130902.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/Pieces_ecrites/4_Annexes/50545_plan_1_20130902.pdf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_CARTE_INOND_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_COTE_VIT_DEB_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_L_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_CRISE_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_P_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_ENJEU_PATRIM_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FAI_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_FOR_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_INONDABLE_MOY_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_REL_HYDRO_INOND_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_REL_HYDRO_INOND_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.dbf
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shp
--------------------------------------------------------------------------------
/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-dgpr/src/test/resources/documents/TRI_JTEST_TOPO_error_SIG_DI/N_TRI_JTEST_TOPO_SOUST_INOND_S_027.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Actes/PM3_Auneau_Legendre_Delpierre_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Actes/PM3_Auneau_Legendre_Delpierre_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_ASSIETTE_SUP_S.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GESTIONNAIRE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_GESTIONNAIRE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleImperiale_19240722_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleImperiale_19240722_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelledesGrecs_19270309_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelledesGrecs_19270309_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChateaudelaPunta_19770207_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChateaudelaPunta_19770207_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CitadelledAjaccio_19750718_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CitadelledAjaccio_19750718_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_DomainedesMilelli_19580214_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_DomainedesMilelli_19580214_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_FortindeGirolata_20131023_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_FortindeGirolata_20131023_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HotelPalaceCyrnos_19901112_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HotelPalaceCyrnos_19901112_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_LazaretdAspretto_19770316_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_LazaretdAspretto_19770316_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_OratoireSaintRoch_19850906_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_OratoireSaintRoch_19850906_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontASpinaCavallu_19761022_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontASpinaCavallu_19761022_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ASSIETTE_SUP_S.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ASSIETTE_SUP_S.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ASSIETTE_SUP_S.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ASSIETTE_SUP_S.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ASSIETTE_SUP_S.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_ASSIETTE_SUP_S.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.DAT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.DAT
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.IND:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.IND
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.MAP:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Donnees_geographiques/19182_SECTEUR_CC_20150517.MAP
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/4_Annexes/19182_plan_sup_20150517.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/4_Annexes/19182_plan_sup_20150517.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Donnees_geographiques/200078244_PERIMETRE_SCOT_20180218.dbf:
--------------------------------------------------------------------------------
1 | y A IDURBA C
200078244_SCOT_20180218 200078244_SCOT_20180218 200078244_SCOT_20180218
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.idx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.idx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_INFO_SURF_20171013.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.idx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.idx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_ZONE_URBA_20171013.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/jointure_sup/duplicated/DATA/SERVITUDE_ACTE_SUP.csv:
--------------------------------------------------------------------------------
1 | IDACTE,IDSUP
2 | 2147483647,2147483647
3 | 2147483647,2147483647
4 | 2147483647,2147483647
5 | 2147483647,2147483647
6 | 2147483647,2147483647
7 | 2147483647,2147483647
8 | 2147483647,2147483647
9 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/GESTIONNAIRE_SUP_028.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/GESTIONNAIRE_SUP_028.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GENERATEUR_SUP_L.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GESTIONNAIRE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_GESTIONNAIRE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienneusineAlban_19921027_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienneusineAlban_19921027_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CastellodeContorba_20100330_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CastellodeContorba_20100330_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CathedraleNotreDame_19061030_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CathedraleNotreDame_19061030_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSainteMarie_19760715_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSainteMarie_19760715_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChateaudeVicodOrnano_20120510_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChateaudeVicodOrnano_20120510_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CitadelledeBonifacio_19291024_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CitadelledeBonifacio_19291024_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CouventSaintAntoine_19910308_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CouventSaintAntoine_19910308_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_DolmendeFontanaccia_19000101_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_DolmendeFontanaccia_19000101_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSaintDominique_18750101_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSaintDominique_18750101_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EscalierduRoidAragon_19940422_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EscalierduRoidAragon_19940422_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_GrandHoteldAjaccio_19920317_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_GrandHoteldAjaccio_19920317_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HotelLesRochesRouges_19910308_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_HotelLesRochesRouges_19910308_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MenhirdeCampodiLuogo_18620101_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MenhirdeCampodiLuogo_18620101_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MoulindeGuardienna_19870729_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MoulindeGuardienna_19870729_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontgenoisdePianella_19761129_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontgenoisdePianella_19761129_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PuitsSaintBarthelemy_19940422_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PuitsSaintBarthelemy_19940422_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourGenoisedeSagone_19740419_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourGenoisedeSagone_19740419_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GENERATEUR_SUP_S.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GENERATEUR_SUP_S.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GENERATEUR_SUP_S.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GENERATEUR_SUP_S.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GENERATEUR_SUP_S.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GENERATEUR_SUP_S.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GESTIONNAIRE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Donnees_geographiques/AC1_GESTIONNAIRE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/0_Procedure/19182_procedure_20150517.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/0_Procedure/19182_procedure_20150517.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/4_Annexes/19182_liste_sup_20150517.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/4_Annexes/19182_liste_sup_20150517.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/2_PADD/200011781_padd_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/2_PADD/200011781_padd_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_doo_20180218.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_doo_20180218.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_padd_20180218.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_padd_20180218.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/GESTIONNAIRE_SUP.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/GESTIONNAIRE_SUP.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/2_PADD/241800432_padd_20200128.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/2_PADD/241800432_padd_20200128.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_liste_sup_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_liste_sup_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_plan_sup_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_plan_sup_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_liste_sup_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_liste_sup_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_ASSIETTE_SUP_S_028.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_ASSIETTE_SUP_S_028.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_ASSIETTE_SUP_S_028.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_ASSIETTE_SUP_S_028.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_ASSIETTE_SUP_S_028.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_ASSIETTE_SUP_S_028.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienPalaisEpiscopal_19841221_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienPalaisEpiscopal_19841221_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CasernegenoiseMontlaur_19940422_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CasernegenoiseMontlaur_19940422_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CathedraleSaintAppien_19890904_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CathedraleSaintAppien_19890904_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_DeuxmenhirsduRizzanese_19000101_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_DeuxmenhirsduRizzanese_19000101_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MenhirdeVaccilVecchio_18621231_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MenhirdeVaccilVecchio_18621231_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_OrangeraiedePortiglio_20161012_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_OrangeraiedePortiglio_20161012_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ParcellesditesdeFrasso_19870602_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ParcellesditesdeFrasso_19870602_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontgenoisdeZippitoli_19770215_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontgenoisdeZippitoli_19770215_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_ASSIETTE_SUP_S.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_ASSIETTE_SUP_S.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_ASSIETTE_SUP_S.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_ASSIETTE_SUP_S.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/1_Rapport_de_presentation/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/1_Rapport_de_presentation/Thumbs.db
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/5_Orientations_amenagement/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/5_Orientations_amenagement/Thumbs.db
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/0_Procedure/30014_procedure_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/0_Procedure/30014_procedure_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_reglement_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_reglement_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_04_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_04_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_text_19_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_text_19_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/3_Reglement/41175_reglement_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/3_Reglement/41175_reglement_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_GENERATEUR_SUP_S_028.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_GENERATEUR_SUP_S_028.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_GENERATEUR_SUP_S_028.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_GENERATEUR_SUP_S_028.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_GENERATEUR_SUP_S_028.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/110068012_PM3_28_20161104/Donnees_geographiques/PM3_GENERATEUR_SUP_S_028.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AnciencouventSaintJulien_19740828_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AnciencouventSaintJulien_19740828_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienneegliseSaintJean_19301229_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienneegliseSaintJean_19301229_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSaintJeanBaptiste_19760723_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSaintJeanBaptiste_19760723_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSainteMarieMajeure_19820921_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSainteMarieMajeure_19820921_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSantaMariaAssunta_19810423_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseSantaMariaAssunta_19810423_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_FigureantiquedAppriciani_18400101_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_FigureantiquedAppriciani_18400101_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonCharlesdeRoccaSerra_20140407_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonCharlesdeRoccaSerra_20140407_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisondeNapoleonBonaparte_19240423_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisondeNapoleonBonaparte_19240423_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_OratoireSaintJeanBaptiste_19850906_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_OratoireSaintJeanBaptiste_19850906_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontiVicchiusurleTaravo_19761110_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_PontiVicchiusurleTaravo_19761110_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_VillagemedievaldelOrtolo_20090410_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_VillagemedievaldelOrtolo_20090410_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_rapport_1_20180218.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_rapport_1_20180218.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_rapport_2_20180218.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/1_SCOT/200078244_rapport_2_20180218.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_GENERATEUR_SUP_S.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_GENERATEUR_SUP_S.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_GENERATEUR_SUP_S.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_GENERATEUR_SUP_S.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_GENERATEUR_SUP_S.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/INT1_GENERATEUR_SUP_S.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/213000896_INT1_83044_20160130/Donnees_geographiques/SERVITUDE_ACTE_SUP.dbf:
--------------------------------------------------------------------------------
1 | y a Q IDSUP C ( IDACTE C (
Int1-213000896-1360 Int1-213000896-1360-1
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_ZONE_URBA_20200128.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_ZONE_URBA_20200128.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_ZONE_URBA_20200128.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_ZONE_URBA_20200128.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_ZONE_URBA_20200128.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_ZONE_URBA_20200128.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.idx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.idx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_LIN_20171013.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.idx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.idx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_PCT_20171013.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.idx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.idx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Donnees_geographiques/30014_PRESCRIPTION_SURF_20171013.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_lin_99_00_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_lin_99_00_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_pct_99_00_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_pct_99_00_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_info_lin_19_aep_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_info_lin_19_aep_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/jointure_sup/one2one/DATA/GESTIONNAIRE_SUP.csv:
--------------------------------------------------------------------------------
1 | NOMGEST,ADRESSE,NUMTEL,COURRIEL,IDGEST,NOMCORRES
2 | DREAL Bretagne,L'Armorique - 10 rue Maurice Fabre – CS 96515 - 35065 Rennes Cedex,0299334436,spn.dreal-bretagne@developpement-durable.gouv.fr,130010002,SPN/BGP
3 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienCouventSaintDominique_19900130_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienCouventSaintDominique_19900130_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AnciencouventSaintFrancois_19761231_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AnciencouventSaintFrancois_19761231_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSanPietrodiPanicali_20091013_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSanPietrodiPanicali_20091013_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CouventSaintFrancoisdIstria_19930623_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_CouventSaintFrancoisdIstria_19930623_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonPhilippedeRoccaSerra_20140407_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MaisonPhilippedeRoccaSerra_20140407_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitedelErmitagedelaTrinite_20160406_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitedelErmitagedelaTrinite_20160406_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeCapoNerooudeCapuNeru_19940422_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeCapoNerooudeCapuNeru_19940422_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_plan_SUP_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_plan_SUP_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_lin_19_eu_01_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_lin_19_eu_01_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_lin_19_eu_02_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_lin_19_eu_02_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_1_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_1_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_2_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_2_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_3_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_3_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_4_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_4_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_5_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/4_Annexes/30014_info_surf_99_00_5_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_classement_sonore_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_classement_sonore_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_info_zone_humide_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_info_zone_humide_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AlignementdemenhirsdePagliajo_19741023_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AlignementdemenhirsdePagliajo_19741023_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSanQuilicudeMontilati_19770707_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSanQuilicudeMontilati_19770707_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapellefunerairePozzodiBorgo_20120514_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapellefunerairePozzodiBorgo_20120514_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EchauguetteetleRempartattenant_19841221_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EchauguetteetleRempartattenant_19841221_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EglisedeSantaMariaFiganiella_19270829_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EglisedeSantaMariaFiganiella_19270829_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSaintGeorges_19890213_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSaintGeorges_19890213_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSaintNicolas_19900130_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSaintNicolas_19900130_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSaintSpiridon_19900630_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSaintSpiridon_19900630_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSainteMarie_19850906_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialeSainteMarie_19850906_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialedelAssomption_19890213_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_EgliseparoissialedelAssomption_19890213_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_RuinesdelamaisonSampieroCorso_20120625_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_RuinesdelamaisonSampieroCorso_20120625_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitearcheologiquedeCucuruzzu_19821109_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitearcheologiquedeCucuruzzu_19821109_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeCapodiMurooudeCapudiMuru_19940422_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_TourdeCapodiMurooudeCapudiMuru_19940422_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/0_Procedure/200011781_procedure_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/0_Procedure/200011781_procedure_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/3_Reglement/200011781_reglement_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/3_Reglement/200011781_reglement_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_liste_SUP_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_liste_SUP_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Donnees_geographiques/200078244_PERIMETRE_SCOT_20180218.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Donnees_geographiques/200078244_PERIMETRE_SCOT_20180218.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Donnees_geographiques/200078244_PERIMETRE_SCOT_20180218.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Donnees_geographiques/200078244_PERIMETRE_SCOT_20180218.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/0_Procedure/200078244_procedure_20180218.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200078244_SCOT_20180218/Pieces_ecrites/0_Procedure/200078244_procedure_20180218.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/0_Procedure/241800432_procedure_20200128.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/0_Procedure/241800432_procedure_20200128.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/3_Reglement/241800432_reglement_20200128.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/3_Reglement/241800432_reglement_20200128.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/4_Annexes/241800432_liste_sup_20200128.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Pieces_ecrites/4_Annexes/241800432_liste_sup_20200128.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_annexes_sanitaires_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_annexes_sanitaires_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Pieces_ecrites/Rapport_de_presentation/50545_rapport_20130902.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20130902/Pieces_ecrites/Rapport_de_presentation/50545_rapport_20130902.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/jointure_sup/idgen_not_unique/DATA/GESTIONNAIRE_SUP.csv:
--------------------------------------------------------------------------------
1 | NOMGEST,ADRESSE,NUMTEL,COURRIEL,IDGEST,NOMCORRES
2 | DREAL Bretagne,L'Armorique - 10 rue Maurice Fabre – CS 96515 - 35065 Rennes Cedex,0299334436,spn.dreal-bretagne@developpement-durable.gouv.fr,130010002,SPN/BGP
3 |
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_088_20200313/Donnees_geographiques/A5_SERVITUDE_ACTE_SUP.dbf:
--------------------------------------------------------------------------------
1 | y a e IDSUP C 2 IDACTE C 2
A5-123456789-1 A5-123456789-1-1
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/123456789_A5_88_20200313/Donnees_geographiques/A5_SERVITUDE_ACTE_SUP.dbf:
--------------------------------------------------------------------------------
1 | y a e IDSUP C 2 IDACTE C 2
A5-123456789-1 A5-123456789-1-1
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSaintErasmeouSantErasmu_19930105_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSaintErasmeouSantErasmu_19930105_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSaintJeanBaptistedePruno_19770719_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ChapelleSaintJeanBaptistedePruno_19770719_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ImmeubledelappartementBaciocchi_19921027_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_ImmeubledelappartementBaciocchi_19921027_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/4_Annexes/19182_sectorisation_graphique_20150517.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/4_Annexes/19182_sectorisation_graphique_20150517.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_info_surf_04_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_info_surf_04_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_LIN_20200128.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_LIN_20200128.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_LIN_20200128.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_LIN_20200128.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_LIN_20200128.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_LIN_20200128.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_PCT_20200128.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_PCT_20200128.dbf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_PCT_20200128.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_PCT_20200128.shp
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_PCT_20200128.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_PCT_20200128.shx
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_prescription_surf_01_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_prescription_surf_01_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_prescription_surf_05_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_prescription_surf_05_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_reglement_graphique_20171013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/30014_PLU_20171013/Pieces_ecrites/3_Reglement/30014_reglement_graphique_20171013.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_reglement_graphique_1_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_reglement_graphique_1_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_reglement_graphique_2_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_reglement_graphique_2_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_reglement_graphique_3_20140603.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/41175_PLU_20140603/Pieces_ecrites/4_Annexes/41175_reglement_graphique_3_20140603.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/Pieces_ecrites/1_Rapport_de_presentation/50545_rapport_20130902.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/50545_CC_20140101/Pieces_ecrites/1_Rapport_de_presentation/50545_rapport_20130902.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AbriPrehistoriquedAraguinaSennola_19880901_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AbriPrehistoriquedAraguinaSennola_19880901_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AnciennechapelleSanAgostinodeChera_19800206_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AnciennechapelleSanAgostinodeChera_19800206_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienneegliseSanGiovanniBattista_19770729_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_AncienneegliseSanGiovanniBattista_19770729_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_BaptisterepaleochretiendeSaintJean_20130214_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_BaptisterepaleochretiendeSaintJean_20130214_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MonumentcommemoratifdeSampieroCorso_20080208_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_MonumentcommemoratifdeSampieroCorso_20080208_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitearcheologiqueICalanchiSaparata_19901206_act.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/172014607_AC1_2A_20180130/Actes/AC1_SitearcheologiqueICalanchiSaparata_19901206_act.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/1_Rapport_de_presentation/19182_rapport_1_20150517.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/1_Rapport_de_presentation/19182_rapport_1_20150517.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/1_Rapport_de_presentation/19182_rapport_2_20150517.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/1_Rapport_de_presentation/19182_rapport_2_20150517.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/1_Rapport_de_presentation/19182_rapport_3_20150517.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/19182_CC_20150517/Pieces_ecrites/1_Rapport_de_presentation/19182_rapport_3_20150517.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_info_lin_19_aep_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_info_lin_19_aep_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_info_lin_19_eu_20180101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/200011781_PLUi_20180101/Pieces_ecrites/4_Annexes/200011781_info_lin_19_eu_20180101.pdf
--------------------------------------------------------------------------------
/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_SURF_20200128.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IGNF/validator/HEAD/validator-plugin-cnig/src/test/resources/documents/241800432_PLUi_20200128/Donnees_geographiques/241800432_PRESCRIPTION_SURF_20200128.dbf
--------------------------------------------------------------------------------