records
Verkehrszählung nach Fahrzeugklassen auf den Bundesstrassen im Kanton St.Gallen (ASTRA)
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"verkehrszahlung-bundesstrassen-kanton-stgallen-astra",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/verkehrszahlung-bundesstrassen-kanton-stgallen-astra"
}
] - "definitions":{
- "verkehrszahlung-bundesstrassen-kanton-stgallen-astra":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/verkehrszahlung-bundesstrassen-kanton-stgallen-astra_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"
}
}
} - "verkehrszahlung-bundesstrassen-kanton-stgallen-astra_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "zst":,{
- "type":"integer",
- "title":"ZST",
- "description":""
} - "strassennummer":,{
- "type":"string",
- "title":"Strassennummer",
- "description":""
} - "zahlstellen_bezeichnung":,{
- "type":"string",
- "title":"Zählstellen-Bezeichnung",
- "description":""
} - "kanton":,{
- "type":"string",
- "title":"Kanton",
- "description":""
} - "richtung_1":,{
- "type":"string",
- "title":"Richtung 1",
- "description":""
} - "richtung_2":,{
- "type":"string",
- "title":"Richtung 2",
- "description":""
} - "standort":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Standort",
- "description":""
} - "tag":,{
- "type":"integer",
- "title":"TAG",
- "description":""
} - "jjmmtt":,{
- "type":"string",
- "format":"date",
- "title":"JJMMTT",
- "description":""
} - "t":,{
- "type":"integer",
- "title":"Tag_Nr",
- "description":""
} - "wochentag":,{
- "type":"string",
- "title":"Wochentag",
- "description":""
} - "arbeitstag":,{
- "type":"string",
- "title":"Arbeitstag",
- "description":""
} - "kl":,{
- "type":"integer",
- "title":"Fahrzeugklasse",
- "description":""
} - "name_d":,{
- "type":"string",
- "title":"NAME_D",
- "description":""
} - "swiss10group":,{
- "type":"string",
- "title":"SWISS10GROUP",
- "description":""
} - "swiss7group":,{
- "type":"string",
- "title":"SWISS7GROUP",
- "description":""
} - "swiss6group":,{
- "type":"string",
- "title":"SWISS6GROUP",
- "description":""
} - "total_r1":,{
- "type":"integer",
- "title":"Total Richtung 1",
- "description":""
} - "total_r2":,{
- "type":"integer",
- "title":"Total Richtung 2",
- "description":""
} - "total_beide_richtungen":,{
- "type":"integer",
- "title":"Total Beide Richtungen",
- "description":""
} - "r1h00":,{
- "type":"integer",
- "title":"R1H00",
- "description":""
} - "st_r1h00":,{
- "type":"string",
- "title":"ST_R1H00",
- "description":""
} - "r1h01":,{
- "type":"integer",
- "title":"R1H01",
- "description":""
} - "st_r1h01":,{
- "type":"string",
- "title":"ST_R1H01",
- "description":""
} - "r1h02":,{
- "type":"integer",
- "title":"R1H02",
- "description":""
} - "st_r1h02":,{
- "type":"string",
- "title":"ST_R1H02",
- "description":""
} - "r1h03":,{
- "type":"integer",
- "title":"R1H03",
- "description":""
} - "st_r1h03":,{
- "type":"string",
- "title":"ST_R1H03",
- "description":""
} - "r1h04":,{
- "type":"integer",
- "title":"R1H04",
- "description":""
} - "st_r1h04":,{
- "type":"string",
- "title":"ST_R1H04",
- "description":""
} - "r1h05":,{
- "type":"integer",
- "title":"R1H05",
- "description":""
} - "st_r1h05":,{
- "type":"string",
- "title":"ST_R1H05",
- "description":""
} - "r1h06":,{
- "type":"integer",
- "title":"R1H06",
- "description":""
} - "st_r1h06":,{
- "type":"string",
- "title":"ST_R1H06",
- "description":""
} - "r1h07":,{
- "type":"integer",
- "title":"R1H07",
- "description":""
} - "st_r1h07":,{
- "type":"string",
- "title":"ST_R1H07",
- "description":""
} - "r1h08":,{
- "type":"integer",
- "title":"R1H08",
- "description":""
} - "st_r1h08":,{
- "type":"string",
- "title":"ST_R1H08",
- "description":""
} - "r1h09":,{
- "type":"integer",
- "title":"R1H09",
- "description":""
} - "st_r1h09":,{
- "type":"string",
- "title":"ST_R1H09",
- "description":""
} - "r1h10":,{
- "type":"integer",
- "title":"R1H10",
- "description":""
} - "st_r1h10":,{
- "type":"string",
- "title":"ST_R1H10",
- "description":""
} - "r1h11":,{
- "type":"string",
- "title":"R1H11",
- "description":""
} - "st_r1h11":,{
- "type":"string",
- "title":"ST_R1H11",
- "description":""
} - "r1h12":,{
- "type":"integer",
- "title":"R1H12",
- "description":""
} - "st_r1h12":,{
- "type":"string",
- "title":"ST_R1H12",
- "description":""
} - "r1h13":,{
- "type":"integer",
- "title":"R1H13",
- "description":""
} - "st_r1h13":,{
- "type":"string",
- "title":"ST_R1H13",
- "description":""
} - "r1h14":,{
- "type":"integer",
- "title":"R1H14",
- "description":""
} - "st_r1h14":,{
- "type":"string",
- "title":"ST_R1H14",
- "description":""
} - "r1h15":,{
- "type":"integer",
- "title":"R1H15",
- "description":""
} - "st_r1h15":,{
- "type":"string",
- "title":"ST_R1H15",
- "description":""
} - "r1h16":,{
- "type":"integer",
- "title":"R1H16",
- "description":""
} - "st_r1h16":,{
- "type":"string",
- "title":"ST_R1H16",
- "description":""
} - "r1h17":,{
- "type":"integer",
- "title":"R1H17",
- "description":""
} - "st_r1h17":,{
- "type":"string",
- "title":"ST_R1H17",
- "description":""
} - "r1h18":,{
- "type":"integer",
- "title":"R1H18",
- "description":""
} - "st_r1h18":,{
- "type":"string",
- "title":"ST_R1H18",
- "description":""
} - "r1h19":,{
- "type":"integer",
- "title":"R1H19",
- "description":""
} - "st_r1h19":,{
- "type":"string",
- "title":"ST_R1H19",
- "description":""
} - "r1h20":,{
- "type":"integer",
- "title":"R1H20",
- "description":""
} - "st_r1h20":,{
- "type":"string",
- "title":"ST_R1H20",
- "description":""
} - "r1h21":,{
- "type":"integer",
- "title":"R1H21",
- "description":""
} - "st_r1h21":,{
- "type":"string",
- "title":"ST_R1H21",
- "description":""
} - "r1h22":,{
- "type":"integer",
- "title":"R1H22",
- "description":""
} - "st_r1h22":,{
- "type":"string",
- "title":"ST_R1H22",
- "description":""
} - "r1h23":,{
- "type":"integer",
- "title":"R1H23",
- "description":""
} - "st_r1h23":,{
- "type":"string",
- "title":"ST_R1H23",
- "description":""
} - "r2h00":,{
- "type":"integer",
- "title":"R2H00",
- "description":""
} - "st_r2h00":,{
- "type":"string",
- "title":"ST_R2H00",
- "description":""
} - "r2h01":,{
- "type":"integer",
- "title":"R2H01",
- "description":""
} - "st_r2h01":,{
- "type":"string",
- "title":"ST_R2H01",
- "description":""
} - "r2h02":,{
- "type":"integer",
- "title":"R2H02",
- "description":""
} - "st_r2h02":,{
- "type":"string",
- "title":"ST_R2H02",
- "description":""
} - "r2h03":,{
- "type":"integer",
- "title":"R2H03",
- "description":""
} - "st_r2h03":,{
- "type":"string",
- "title":"ST_R2H03",
- "description":""
} - "r2h04":,{
- "type":"integer",
- "title":"R2H04",
- "description":""
} - "st_r2h04":,{
- "type":"string",
- "title":"ST_R2H04",
- "description":""
} - "r2h05":,{
- "type":"integer",
- "title":"R2H05",
- "description":""
} - "st_r2h05":,{
- "type":"string",
- "title":"ST_R2H05",
- "description":""
} - "r2h06":,{
- "type":"integer",
- "title":"R2H06",
- "description":""
} - "st_r2h06":,{
- "type":"string",
- "title":"ST_R2H06",
- "description":""
} - "r2h07":,{
- "type":"integer",
- "title":"R2H07",
- "description":""
} - "st_r2h07":,{
- "type":"string",
- "title":"ST_R2H07",
- "description":""
} - "r2h08":,{
- "type":"integer",
- "title":"R2H08",
- "description":""
} - "st_r2h08":,{
- "type":"string",
- "title":"ST_R2H08",
- "description":""
} - "r2h09":,{
- "type":"integer",
- "title":"R2H09",
- "description":""
} - "st_r2h09":,{
- "type":"string",
- "title":"ST_R2H09",
- "description":""
} - "r2h10":,{
- "type":"integer",
- "title":"R2H10",
- "description":""
} - "st_r2h10":,{
- "type":"string",
- "title":"ST_R2H10",
- "description":""
} - "r2h11":,{
- "type":"integer",
- "title":"R2H11",
- "description":""
} - "st_r2h11":,{
- "type":"string",
- "title":"ST_R2H11",
- "description":""
} - "r2h12":,{
- "type":"integer",
- "title":"R2H12",
- "description":""
} - "st_r2h12":,{
- "type":"string",
- "title":"ST_R2H12",
- "description":""
} - "r2h13":,{
- "type":"integer",
- "title":"R2H13",
- "description":""
} - "st_r2h13":,{
- "type":"string",
- "title":"ST_R2H13",
- "description":""
} - "r2h14":,{
- "type":"integer",
- "title":"R2H14",
- "description":""
} - "st_r2h14":,{
- "type":"string",
- "title":"ST_R2H14",
- "description":""
} - "r2h15":,{
- "type":"integer",
- "title":"R2H15",
- "description":""
} - "st_r2h15":,{
- "type":"string",
- "title":"ST_R2H15",
- "description":""
} - "r2h16":,{
- "type":"integer",
- "title":"R2H16",
- "description":""
} - "st_r2h16":,{
- "type":"string",
- "title":"ST_R2H16",
- "description":""
} - "r2h17":,{
- "type":"integer",
- "title":"R2H17",
- "description":""
} - "st_r2h17":,{
- "type":"string",
- "title":"ST_R2H17",
- "description":""
} - "r2h18":,{
- "type":"integer",
- "title":"R2H18",
- "description":""
} - "st_r2h18":,{
- "type":"string",
- "title":"ST_R2H18",
- "description":""
} - "r2h19":,{
- "type":"integer",
- "title":"R2H19",
- "description":""
} - "st_r2h19":,{
- "type":"string",
- "title":"ST_R2H19",
- "description":""
} - "r2h20":,{
- "type":"integer",
- "title":"R2H20",
- "description":""
} - "st_r2h20":,{
- "type":"string",
- "title":"ST_R2H20",
- "description":""
} - "r2h21":,{
- "type":"integer",
- "title":"R2H21",
- "description":""
} - "st_r2h21":,{
- "type":"string",
- "title":"ST_R2H21",
- "description":""
} - "r2h22":,{
- "type":"integer",
- "title":"R2H22",
- "description":""
} - "st_r2h22":,{
- "type":"string",
- "title":"ST_R2H22",
- "description":""
} - "r2h23":,{
- "type":"integer",
- "title":"R2H23",
- "description":""
} - "st_r2h23":{
- "type":"string",
- "title":"ST_R2H23",
- "description":""
}
} - "zst":
}
} - "fields":
} - "properties":
} - "verkehrszahlung-bundesstrassen-kanton-stgallen-astra":
}