-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add new dataset * .
- Loading branch information
Showing
5 changed files
with
444 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"type": "dataset", | ||
"id": "historischeBodeminformatie", | ||
"title": "Historische bodeminformatie", | ||
"status": "beschikbaar", | ||
"description": "Historische activiteiten/bevindingen die zijn gedaan in/op de ondergrond", | ||
"version": "1.0.0", | ||
"dateCreated": "2024-07-23T00:00:00+01:00", | ||
"dateModified": "2024-07-24T00:00:00+01:00", | ||
"language": "nl", | ||
"creator": "Datateam Stedelijke Ontwikkeling en Beheer", | ||
"publisher": { | ||
"$ref": "publishers/SOEB" | ||
}, | ||
"accrualPeriodicity": "wekelijks", | ||
"spatialDescription": "Gemeente Amsterdam", | ||
"theme": [ | ||
"ondergrondse infrastructuur", | ||
"Ruimte en Topografie" | ||
], | ||
"owner": "Gemeente Amsterdam", | ||
"auth": "OPENBAAR", | ||
"authorizationGrantor": "[email protected]", | ||
"keywords": [ | ||
"historisch", | ||
"bodeminformatie", | ||
"elementen", | ||
"objecten", | ||
"onderzoeken", | ||
"kabels en leidingen" | ||
], | ||
"crs": "EPSG:28992", | ||
"tables": [ | ||
{ | ||
"id": "onderzoeken", | ||
"$ref": "onderzoeken/v1.0.0", | ||
"activeVersions": { | ||
"1.0.0": "onderzoeken/v1.0.0" | ||
} | ||
}, | ||
{ | ||
"id": "dempingenEnOphogingen", | ||
"$ref": "dempingenEnOphogingen/v1.0.0", | ||
"activeVersions": { | ||
"1.0.0": "dempingenEnOphogingen/v1.0.0" | ||
} | ||
}, | ||
{ | ||
"id": "objecten", | ||
"$ref": "objecten/v1.0.0", | ||
"activeVersions": { | ||
"1.0.0": "objecten/v1.0.0" | ||
} | ||
}, | ||
{ | ||
"id": "kabelsEnLeidingen", | ||
"$ref": "kabelsEnLeidingen/v1.0.0", | ||
"activeVersions": { | ||
"1.0.0": "kabelsEnLeidingen/v1.0.0" | ||
} | ||
} | ||
] | ||
} |
94 changes: 94 additions & 0 deletions
94
datasets/historische_bodeminformatie/dempingenEnOphogingen/v1.0.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,94 @@ | ||
{ | ||
"id": "dempingenEnOphogingen", | ||
"type": "table", | ||
"version": "1.0.0", | ||
"title": "Historische dempingen en ophogingen", | ||
"description": "-", | ||
"auth": "OPENBAAR", | ||
"status": "beschikbaar", | ||
"creator": "Ingenieursbureau Team WGM", | ||
"publisher": "Datateam Stedelijke Ontwikkeling en Beheer", | ||
"authorizationGrantor": "[email protected]", | ||
"owner": "Gemeente Amsterdam", | ||
"theme": [ | ||
"ondergrondse infrastructuur", | ||
"Ruimte en Topografie" | ||
], | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"mainGeometry": "geometrie", | ||
"required": [ | ||
"id", | ||
"schema" | ||
], | ||
"display": "id", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"id": { | ||
"type": "string", | ||
"description": "Unieke aanduiding record." | ||
}, | ||
"categorie": { | ||
"type": "string", | ||
"description": "Categorie van de ophoging of demping." | ||
}, | ||
"beschrijving": { | ||
"type": "string", | ||
"description": "Beschrijving van de ophoging of demping." | ||
}, | ||
"opmerking": { | ||
"type": "string", | ||
"description": "Opmerking over de ophoging of demping." | ||
}, | ||
"vanMinimaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"vanMaximaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"totMinimaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"totMaximaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"bron1": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron2": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron3": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron4": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bewerkingsdatumGeometrie": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "Datum wanneer de geometrie werd bewerkt." | ||
}, | ||
"geometrie": { | ||
"$ref": "https://geojson.org/schema/Geometry.json", | ||
"description": "Geometrie in RD (epsg:28992) van locatie onderzoek." | ||
} | ||
} | ||
} | ||
} |
94 changes: 94 additions & 0 deletions
94
datasets/historische_bodeminformatie/kabelsEnLeidingen/v1.0.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,94 @@ | ||
{ | ||
"id": "kabelsEnLeidingen", | ||
"type": "table", | ||
"version": "1.0.0", | ||
"title": "Historische kabels en leidingen", | ||
"description": "-", | ||
"auth": "OPENBAAR", | ||
"status": "beschikbaar", | ||
"creator": "Ingenieursbureau Team WGM", | ||
"publisher": "Datateam Stedelijke Ontwikkeling en Beheer", | ||
"authorizationGrantor": "[email protected]", | ||
"owner": "Gemeente Amsterdam", | ||
"theme": [ | ||
"ondergrondse infrastructuur", | ||
"Ruimte en Topografie" | ||
], | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"mainGeometry": "geometrie", | ||
"required": [ | ||
"id", | ||
"schema" | ||
], | ||
"display": "id", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"id": { | ||
"type": "string", | ||
"description": "Unieke aanduiding record." | ||
}, | ||
"categorie": { | ||
"type": "string", | ||
"description": "Categorie van de kabel of leiding." | ||
}, | ||
"beschrijving": { | ||
"type": "string", | ||
"description": "Beschrijving van de kabel of leiding." | ||
}, | ||
"opmerking": { | ||
"type": "string", | ||
"description": "Opmerking over de kabel of leiding." | ||
}, | ||
"vanMinimaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"vanMaximaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"totMinimaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"totMaximaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"bron1": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron2": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron3": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron4": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bewerkingsdatumGeometrie": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "Datum wanneer de geometrie werd bewerkt." | ||
}, | ||
"geometrie": { | ||
"$ref": "https://geojson.org/schema/Geometry.json", | ||
"description": "Geometrie in RD (epsg:28992) van locatie onderzoek." | ||
} | ||
} | ||
} | ||
} |
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,94 @@ | ||
{ | ||
"id": "objecten", | ||
"type": "table", | ||
"version": "1.0.0", | ||
"title": "Historische objecten", | ||
"description": "-", | ||
"auth": "OPENBAAR", | ||
"status": "beschikbaar", | ||
"creator": "Ingenieursbureau Team WGM", | ||
"publisher": "Datateam Stedelijke Ontwikkeling en Beheer", | ||
"authorizationGrantor": "[email protected]", | ||
"owner": "Gemeente Amsterdam", | ||
"theme": [ | ||
"ondergrondse infrastructuur", | ||
"Ruimte en Topografie" | ||
], | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"mainGeometry": "geometrie", | ||
"required": [ | ||
"id", | ||
"schema" | ||
], | ||
"display": "id", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"id": { | ||
"type": "string", | ||
"description": "Unieke aanduiding record." | ||
}, | ||
"categorie": { | ||
"type": "string", | ||
"description": "Categorie van het object." | ||
}, | ||
"beschrijving": { | ||
"type": "string", | ||
"description": "Beschrijving van het desbetreffende object." | ||
}, | ||
"opmerking": { | ||
"type": "string", | ||
"description": "Opmerking over het desbetreffende object." | ||
}, | ||
"vanMinimaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"vanMaximaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"totMinimaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"totMaximaalJaar": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "-" | ||
}, | ||
"bron1": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron2": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron3": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bron4": { | ||
"type": "string", | ||
"description": "-" | ||
}, | ||
"bewerkingsdatumGeometrie": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "Datum wanneer de geometrie werd bewerkt." | ||
}, | ||
"geometrie": { | ||
"$ref": "https://geojson.org/schema/Geometry.json", | ||
"description": "Geometrie in RD (epsg:28992) van locatie onderzoek." | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.