-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cbd857f
commit 824abe8
Showing
3 changed files
with
264 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
120 changes: 120 additions & 0 deletions
120
datasets/leidingeninfrastructuur/waternetRioolknopen/v2.1.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
{ | ||
"id": "waternetRioolknopen", | ||
"crs": "EPSG:7415", | ||
"type": "table", | ||
"version": "2.1.0", | ||
"title": "Waternet Rioolnetwerk Knopen", | ||
"description": "Alle rioolknopen welke door Waternet beschikbaar wordt gesteld.", | ||
"auth": "OPENBAAR", | ||
"status": "beschikbaar", | ||
"creator": "Waternet", | ||
"publisher": "Datateam Stedelijke Ontwikkeling en Beheer", | ||
"authorizationGrantor": "[email protected]", | ||
"theme": [ | ||
"Waternet Rioolnetwerk" | ||
], | ||
"owner": "Waternet", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"identifier": "objectnummer", | ||
"required": [ | ||
"schema", | ||
"objectnummer" | ||
], | ||
"mainGeometry": "geometrie", | ||
"display": "objectnummer", | ||
"properties": { | ||
"objectnummer": { | ||
"title": "Rioolknoop objectnummer", | ||
"type": "integer", | ||
"description": "Uniek objectnummer van de rioolknoop." | ||
}, | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"status": { | ||
"title": "Rioolknoop status", | ||
"type": "string", | ||
"description": "Bedrijfsstatus van de knoop. Aanduiding van het gebruik van een fysiek object.", | ||
"enum": [ | ||
"In Bedrijf", | ||
"In bedrijf (te vervallen)", | ||
"Vervallen" | ||
] | ||
}, | ||
"jaarGelegd": { | ||
"title": "Rioolknoop aanleg jaar", | ||
"type": "integer", | ||
"description": "Het jaar waarin de rioolknoop is gelegd." | ||
}, | ||
"soort": { | ||
"title": "Rioolknoop soort", | ||
"type": "string", | ||
"description": "Soort knoop. Identificatie wat voor soort fysiek object er de grond ligt. Bijvoorbeeld een rioolput, uitlaat, overstort, gemaal, afsluiter etc." | ||
}, | ||
"typeKnoop": { | ||
"title": "Rioolknoop type", | ||
"type": "string", | ||
"description": "Type knoop. Een verdere specificatie op soort knoop." | ||
}, | ||
"subtype": { | ||
"title": "Rioolknoop subtype", | ||
"type": "string", | ||
"description": "Subtype knoop. De laagste onderverdeling in de typering van knopen." | ||
}, | ||
"maaiveldniveau": { | ||
"title": "Maaiveld hoogte", | ||
"type": "number", | ||
"description": "Niveau van het maaiveld ten opzichte van NAP in meters." | ||
}, | ||
"funderingstype": { | ||
"title": "Rioolknoop funderingstype", | ||
"type": "string", | ||
"description": "Het type fundering onder de knoop.", | ||
"enum": [ | ||
"Grondverb.", | ||
"Onderheid", | ||
"Sloofconst.", | ||
"Standaard" | ||
] | ||
}, | ||
"symboolhoek": { | ||
"title": "Rioolknoop symboolhoek", | ||
"type": "integer", | ||
"description": "Symboolhoek rioolknoop in graden. Rotatie om in GIS het knoop symbool op de juiste manier te roteren. Berekend ten op zichte van de bijbehorende leiding." | ||
}, | ||
"globalid": { | ||
"title": "Rioolknoop global ID", | ||
"type": "string", | ||
"description": "Id van de knoop. Hiermee kan een koppeling gemaakt worden met de leidingen. UUID in GIS voor het gis-object." | ||
}, | ||
"nummer": { | ||
"title": "Rioolknoop nummer", | ||
"type": "string", | ||
"description": "Het nummer van de knoop. In gebruik bij een deel van de knoopsoorten." | ||
}, | ||
"bemalingsgebied": { | ||
"title": "Rioolknoop bemalingsgebied", | ||
"type": "string", | ||
"description": "Het bemalingsgebied waar de knoop in ligt." | ||
}, | ||
"drempelniveau": { | ||
"title": "Rioolknoop drempelniveau hoogte", | ||
"type": "number", | ||
"description": "Hoogte drempelniveau ten opzichte van NAP in meters." | ||
}, | ||
"drempelbreedte": { | ||
"title": "Rioolknoop drempelbreedte", | ||
"type": "number", | ||
"description": "De drempelbreedte van de wand van de overstort in millimeters." | ||
}, | ||
"geometrie": { | ||
"title": "Geometrie", | ||
"$ref": "https://geojson.org/schema/Point.json", | ||
"description": "Geometrie in RD (epsg:7415)" | ||
} | ||
} | ||
} | ||
} |
140 changes: 140 additions & 0 deletions
140
datasets/leidingeninfrastructuur/waternetRioolleidingen/v2.1.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
{ | ||
"id": "waternetRioolleidingen", | ||
"crs": "EPSG:7415", | ||
"type": "table", | ||
"version": "2.1.0", | ||
"title": "Waternet Rioolnetwerk Leidingen", | ||
"description": "Alle rioolleidingen welke door Waternet beschikbaar worden gesteld.", | ||
"auth": "OPENBAAR", | ||
"status": "beschikbaar", | ||
"creator": "Waternet", | ||
"publisher": "Datateam Stedelijke Ontwikkeling en Beheer", | ||
"authorizationGrantor": "[email protected]", | ||
"theme": [ | ||
"Waternet Rioolnetwerk" | ||
], | ||
"owner": "Waternet", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"identifier": "objectnummer", | ||
"required": [ | ||
"schema", | ||
"objectnummer" | ||
], | ||
"mainGeometry": "geometrie", | ||
"display": "objectnummer", | ||
"properties": { | ||
"objectnummer": { | ||
"title": "Rioolleiding objectnummer", | ||
"type": "integer", | ||
"description": "Uniek objectnummer van de rioolleiding." | ||
}, | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"status": { | ||
"title": "Rioolleiding status", | ||
"type": "string", | ||
"description": "Gebruiksstatus van de rioolleiding in het net.", | ||
"enum": [ | ||
"In Bedrijf", | ||
"In bedrijf (te vervallen)", | ||
"Vervallen" | ||
] | ||
}, | ||
"jaarGelegd": { | ||
"title": "Rioolleiding aanleg jaar", | ||
"type": "integer", | ||
"description": "Het jaar waarin een rioolleiding is gelegd." | ||
}, | ||
"soort": { | ||
"title": "Rioolleiding soort", | ||
"type": "string", | ||
"description": "Soort rioolleiding. Bijvoorbeeld een rioolleiding, een vuilwaterrioolleiding, een transportleiding, drain etc." | ||
}, | ||
"typeLeiding": { | ||
"title": "Rioolleiding type", | ||
"type": "string", | ||
"description": "Type rioolleiding, een nadere toelichting op het soort leiding." | ||
}, | ||
"vorm": { | ||
"title": "Rioolleiding vorm", | ||
"type": "string", | ||
"description": "Vorm van de rioolleiding." | ||
}, | ||
"diameter": { | ||
"title": "Leiding diameter", | ||
"type": "integer", | ||
"description": "Diameter leiding in millimeters." | ||
}, | ||
"breedte": { | ||
"title": "Leiding breedte", | ||
"type": "integer", | ||
"description": "Breedte leiding in millimeters." | ||
}, | ||
"hoogte": { | ||
"title": "Leiding hoogte", | ||
"type": "integer", | ||
"description": "Hoogte leiding gemeten vanaf NAP in millimeters." | ||
}, | ||
"materiaal": { | ||
"title": "Rioolleiding materiaal", | ||
"type": "string", | ||
"description": "Type materiaal rioolleiding." | ||
}, | ||
"bobBeginpunt": { | ||
"title": "Hoogte binnen onderkant buis beginpunt", | ||
"type": "number", | ||
"description": "Hoogte Binnen Onderkant Buis van het beginpunt van de leiding in meters ten opzichte van NAP." | ||
}, | ||
"bobEindpunt": { | ||
"title": "Hoogte binnen onderkant buis eindpunt", | ||
"type": "number", | ||
"description": "Hoogte Binnen Onderkant Buis van het eindpunt van de leiding in meters ten opzichte van NAP." | ||
}, | ||
"stelselType": { | ||
"title": "Type stelsel", | ||
"type": "string", | ||
"description": "Type stelsel waarvan de rioolleiding deel van uitmaakt. Bijvoorbeeld regenwaterstelsel, gemengd stelsel, vuilwaterstelsel etc. " | ||
}, | ||
"funderingstype": { | ||
"title": "Rioolleiding funderingstype", | ||
"type": "string", | ||
"description": "Omschrijving van de type fundering van een rioolleiding", | ||
"enum": [ | ||
"Grondverb.", | ||
"Onderheid", | ||
"Sloofconst.", | ||
"Standaard" | ||
] | ||
}, | ||
"toelichting": { | ||
"title": "Rioolleiding toelichting", | ||
"type": "string", | ||
"description": "Toelichting van de rioolleiding." | ||
}, | ||
"globalid": { | ||
"title": "Rioolleiding global ID", | ||
"type": "string", | ||
"description": "Global ID van de beginknoop. UUID in GIS voor het gis-object." | ||
}, | ||
"globalidBeginknoop": { | ||
"title": "Rioolleiding beginknoop ID", | ||
"type": "string", | ||
"description": "Global ID van de beginknoop. Middels dit ID van de beginknoop (vertex 0) kan er een koppeling worden gemaakt met de rioolknopen dataset." | ||
}, | ||
"globalidEindknoop": { | ||
"title": "Rioolleiding eindknoop ID", | ||
"type": "string", | ||
"description": "Global ID van de eindknoop. Middels dit ID van de eindknoop (vertex -1) kan er een koppeling worden gemaakt met de rioolknopen dataset." | ||
}, | ||
"geometrie": { | ||
"title": "Geometrie", | ||
"$ref": "https://geojson.org/schema/LineString.json", | ||
"description": "Geometrie in RD (epsg:7415)" | ||
} | ||
} | ||
} | ||
} |