enregistrement
Canevas topographiques
Modèle de données
Cliquez pour déplier Cliquez pour replier
Schéma JSON
L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.
{
- "title":"to_canev_p",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/to_canev_p"
}
] - "definitions":{
- "to_canev_p":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/to_canev_p_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "to_canev_p_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "geo_point_2d":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geo Point",
- "description":""
} - "geo_shape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geo Shape",
- "description":""
} - "localis4":,{
- "type":"string",
- "title":"localis4",
- "description":"Eléments de localisation 4"
} - "localis3":,{
- "type":"string",
- "title":"localis3",
- "description":"Eléments de localisation 3"
} - "localis2":,{
- "type":"string",
- "title":"localis2",
- "description":"Eléments de localisation 2"
} - "localis1":,{
- "type":"string",
- "title":"localis1",
- "description":"Eléments de localisation 1"
} - "y_cc45":,{
- "type":"string",
- "title":"y_cc45",
- "description":"Coordonnée Y, RGF 93 Projection Lambert 93 - CC45"
} - "dat_rimp":,{
- "type":"string",
- "format":"date",
- "title":"dat_rimp",
- "description":"Date de réimplantation"
} - "commune":,{
- "type":"string",
- "title":"commune",
- "description":"Nom de la commune : Liste des valeurs possibles : 33001 : ABZAC 33003 : AMBARES-ET-LAGRAVE 33004 : AMBES 33012 : ARSAC 33013 : ARTIGUES-PRES-BORDEAUX 33015 : ARVEYRES 33016 : ASQUES 33018 : AUBIE-ET-ESPESSAS 33019 : AUDENGE 33022 : AVENSAN 33029 : LE BARP 33032 : BASSENS 33033 : BAURECH 33035 : BAYON-sur-GIRONDE 33039 : BEGLES 33047 : BERSON 33049 : BEYCHAC-ET-CAILLAU 33056 : BLANQUEFORT 33058 : BLAYE 33063 : BORDEAUX 33065 : BOULIAC 33067 : BOURG 33069 : LE BOUSCAT 33070 : BRACH 33071 : BRANNE 33075 : BRUGES 33080 : CADAUJAC 33082 : CADILLAC-EN-FRONDSADAIS 33083 : CARMASAC 33084 : CAMBES 33085 : CAMBLANES-ET-MEYNAC 33090 : CANEJAN 33091 : CANTENAC 33096 : CARBON-BLANC 33100 : CARS 33104 : CASTELNEAU-DE-MEDOC 33109 : CASTRES-GIRONDE 33114 : CAVIGNAC 33118 : CENAC 33119 : CENON 33122 : CESTAS 33123 : CEZAC 33126 : CIVRAC-DE-BLAYE 33132 : COMPS 33142 : CUBNEZAIS 33143 : CUBZAC-LES-PONTS 33162 : EYSINES 33165 : FARGUES-SAINT-HILAIRE 33167 : FLOIRAC 33172 : FOURS 33174 : FRONSAC 33179 : GALGON 33182 : GAURIAC 33185 : GENISSAC 33192 : GRADIGNAN 33200 : LE HAILLAN 33201 : HAUX 33206 : ISLE-SAINT-GEORGES 33207 : IZON 33211 : LABARDE 33213 : LA BREDE 33214 : LACANAU 33219 : LA LANDE-DE-FRONSAC 33220 : LAMARQUE 33222 : LALANDE-de-POMEROL 33226 : LANGOIRAN 33228 : LANSAC 33229 : LANTON 33234 : LATRESNE 33238 : LEOGNAN 33243 : LIBOURNE 33245 : LIGNAN-DE-BORDEAUX 33248 : LISTRAC-MEDOC 33249 : LORMONT 33252 : LOUPES 33256 : LUDON-MEDOC 33259 : LUGON-ET-L'ILE-DU-CARNAY 33262 : MACAU 33268 : MARGAUX 33272 : MARSAS 33273 : MARTIGNAS-SUR-JALLE 33274 : MARTILLAC 33280 : MAZION 33281 : MERIGNAC 33284 : MIOS 33285 : MOMBRIER 33293 : MONTUSSAN 33297 : MOULIS-EN-MEDOC 33298 : MOULON 33302 : NEAC 33303 : NERIGEAN 33311 : PAILLET 33312 : PAREMPUYRE 33313 : PARSAC 33318 : PESSAC 33321 : PEUJARD 33322 : LE PIAN-MEDOC 33325 : PLASSAC 33328 : POMEROL 33330 : POMPIGNAC 33334 : PORTETS 33339 : PRIGNAC-ET-MARCAMPS 33341 : PUGNAC 33349 : QUINSAC 33356 : LA RIVIERE 33363 : SADIRAC 33365 : SAINT-AIGNAN 33366 : SAINT-ANDRE-DE-CUBZAC 33376 : SAINT-AUBIN-DE-MEDOC 33381 : SAINT-CAPRAIS-DE-BORDEAUX 33382 : SAINT-CHRISTOLY-DE-BLAYE 33393 : SAINT-DENIS-DE-PILE 33397 : SAINTE-EULALIE 33405 : SAINT-GENES-DE-BLAYE 33413 : SAINT-GERMAIN-DU-PUCH 33414 : SAINT-GERMAIN-DE-LA-RIVIERE 33415 : SAINT-GERVAIS 33416 : SAINT-GIRONS-d'AIGUEVIVES 33417 : SAINTE-HELENE 33422 : SAINT-JEAN-D'ILLAC 33423 : SAINT-JULIEN-BEYCHEVELLE 33425 : SAINT-LAURENT-D'ARCE 33433 : SAINT-LOUBES 33434 : SAINT-LOUIS-DE-MONTFERRAND 33439 : SAINT-MARIENS 33441 : SAINT-MARTIN-LACAUSSADE 33448 : SAINT-MEDARD-d'EYRANS 33449 : SAINT-MEDARD-en-JALLES 33451 : SAINT-MICHEL-DE-FRONSAC 33458 : SAINT-PAUL 33470 : SAINT-ROMAIN-la-VIRVEE 33473 : SAINT-SAVIN 33475 : SAINT-SEURIN-DE-BOURG 33480 : SAINT-SULPICE-DE-FALEYRENS 33483 : SAINT-SULPICE-DE-CAMEYRAC 33486 : SAINT-TROJAN 33487 : SAINT-VINCENT-DE-PAUL 33489 : SAINT-VIVIEN-DE-BLAYE 33492 : SAINT-YZAN-DE-SOUDIAC 33494 : SALAUNES 33495 : SALIGNAC 33500 : SAMONAC 33501 : SAUCATS 33502 : SAUGON 33509 : SAVIGNAC-DE-L'ISLE 33517 : SOUSSANS 33518 : TABANAC 33519 : LE TAILLAN-MEDOC 33522 : TALENCE 33525 : TAURIAC 33528 : LE TEMPLE 33530 : TEUILLAC 33535 : TRESSES 33539 : VAYRES 33542 : VERAC 33548 : VILLEGOUGE 33550 : VILLENAVE-D'ORNON 33551 : VILLENEVUE 33552 : VIRELADE 33553 : VIRSAC 33554 : YVRAC 33555 : MARCHEPRIME"
} - "type_l3":,{
- "type":"string",
- "title":"type_l3",
- "description":"Type des coordonnées Lambert III : Liste des valeurs possibles : CALCULEES : Coordonnées calculées TRANSFORMEES : Coordonnées transformées"
} - "geom_o":,{
- "type":"string",
- "title":"geom_o",
- "description":"Orientation de l'objet"
} - "lat_rgf_ca":,{
- "type":"string",
- "title":"lat_rgf_ca",
- "description":"Coordonnée N calculée, RGF 93"
} - "fichier":,{
- "type":"string",
- "title":"fichier",
- "description":"Lien vers le PDF"
} - "ident":,{
- "type":"string",
- "title":"ident",
- "description":"Numéro identifiant"
} - "mdate":,{
- "type":"string",
- "format":"date-time",
- "title":"mdate",
- "description":"Date de modification"
} - "nature":,{
- "type":"string",
- "title":"nature",
- "description":"Nature physique du point : Liste des valeurs possibles : ANG_BATI : Angle bâti ANTENNE : Antenne AUTRE : Autre AXE : Axe B_OGE : Borne OGE B_CIMEN : Borne ciment B_GRANIT : Borne granit B_METALL : Borne métallique B_PLCISP : Borne plastique cimentée + spit B_PLASTI : Borne plastique BOULON : Boulon BROCHE : Broche CLOCHER : Clocher CLOU : Clou CROIX : Croix gravée PAVA_REP_BRZ : Pava + repère bronze PAVA_SPIT : Pava + spit PAVA : Pava(bouche) PIQUETBO : Piquet bois POINTE : Pointe R_ALUVER : Repère alu vertical R_BOURDA : Repère Bourdaloue REP_BRZ_HOR : Repère bronze horizontal REP_BRZ_VERT : Repère bronze vertical R_BRO : Repère bronze R_CADAST : Repère cadastre R_CONSOL : Repère console R_CUBID : Repère CUB identifié R_MRU : Repère MRU R_NBG : Repère NBG (bassin Garonne) R_NGF : Repère NGF R_NRU : Repère NRU R_NVB : Repère NVB (ville Bordeaux) R_PTCHAU : Repère Ponts et Chaussées R_CUB : Repère SCT/CUB R_SNCF : Repère SNCF (boule) RONDELLE : Rondelle SPIT_BM : Spit BM SPIT_CUB : Spit CUB SPIT_CADA : Spit Cadastre SPIT_SCT_CUB : Spit SCT/CUB SPIT_ARP : Spit arpentage SPIT_BLC_BET : Spit dans bloc béton SPIT_GEO : Spit géomètre SPIT_ROND : Spit rondelle SPIT : Spit TIRESNCF : Tirefond SNCF"
} - "dat_impl":,{
- "type":"string",
- "format":"date",
- "title":"dat_impl",
- "description":"Date implantation"
} - "type_cc45":,{
- "type":"string",
- "title":"type_cc45",
- "description":"Type des coordonnées CC45 : Liste des valeurs possibles : CALCULEES : Coordonnées calculées TRANSFORMEES : Coordonnées transformées"
} - "gid":,{
- "type":"integer",
- "title":"gid",
- "description":"Clé primaire"
} - "refdos":,{
- "type":"string",
- "title":"refdos",
- "description":"Référence du dossier"
} - "dat_derc":,{
- "type":"string",
- "format":"date",
- "title":"dat_derc",
- "description":"Date dernier calcul"
} - "geom_err":,{
- "type":"string",
- "title":"geom_err",
- "description":"Code d'erreur géométrique : Liste des valeurs possibles : 9999 : Polygone compose et / ou à sections multiples 9998 : Linéaire compose et / ou à sections multiples 9996 : La géométrie contient des informations LRS 9995 : Nombre de dimensions différent de 2 ou 3 9994 : Présence d'un arc de cercle 9000 : Erreur autre 13343 : Polygone de moins de 4 points 13349 : Polygone papillon 13350 : Deux éléments d'un polygone archipel se touchent 13351 : Deux éléments d'un polygone archipel se touchent 13356 : Point double 13366 : Combinaison invalide d'intérieur / extérieur d'un polygone 13367 : Orientation invalide d'intérieur / extérieur d'un polygone"
} - "x_cc45":,{
- "type":"string",
- "title":"x_cc45",
- "description":"Coordonnée X, RGF 93 Projection Lambert 93 - CC45"
} - "z_precis":,{
- "type":"number",
- "title":"z_precis",
- "description":"Coordonnée Z IGN 69"
} - "y_l3":,{
- "type":"string",
- "title":"y_l3",
- "description":"Coordonnée Y, NTF Projection Lambert III Sud"
} - "x_l3":,{
- "type":"string",
- "title":"x_l3",
- "description":"Coordonnée X, NTF Projection Lambert III Sud"
} - "dat_cexi":,{
- "type":"string",
- "format":"date",
- "title":"dat_cexi",
- "description":"Date contrôle existence"
} - "cdate":,{
- "type":"string",
- "format":"date-time",
- "title":"cdate",
- "description":"Date de création"
} - "typecod4":,{
- "type":"string",
- "title":"typecod4",
- "description":"Typologie du CODE4 : Liste des valeurs possibles : PLANIMETRIQUE : Point planimétrique ALTIMETRIQUE : Repère de nivellement"
} - "h_elli":,{
- "type":"string",
- "title":"h_elli",
- "description":"Hauteur ellipsoïdale"
} - "lon_rgf_ca":{
- "type":"string",
- "title":"lon_rgf_ca",
- "description":"Coordonnée E calculée, RGF 93"
}
} - "geo_point_2d":
}
} - "fields":
} - "properties":
} - "to_canev_p":
}