Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- New processes in proposal state:
- `raster_to_vector`
- `date_difference`
- `filter_vector`
- `flatten_dimensions`
Expand Down
53 changes: 53 additions & 0 deletions proposals/raster_to_vector.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"id": "raster_to_vector",
"summary": "Converts a raster to a vector",
Comment thread
PondiB marked this conversation as resolved.
Outdated
"description": "Converts a raster data cube into a vector data cube. The bounding polygon of similar areas of pixels is constructed.",
Comment thread
PondiB marked this conversation as resolved.
Outdated
"categories": [
"cubes"
],
"experimental": true,
"parameters": [
{
"name": "data",
"description": "A data cube.",
"schema": {
"type": "object",
"subtype": "datacube"
Comment thread
PondiB marked this conversation as resolved.
Outdated
}
},
{
"name": "projection",
"description": "Coordinate reference system to reproject the converted vector. Specified as an [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html).\nThe default value is of the input raster cube.",
Comment thread
PondiB marked this conversation as resolved.
Outdated
"schema": [
{
"title": "EPSG Code",
"type": "integer",
"subtype": "epsg-code",
"minimum": 1000,
"examples": [
3857
]
},
{
"title": "WKT2",
"type": "string",
"subtype": "wkt2-definition"
}
],
"optional": true,
"default": null
Comment thread
PondiB marked this conversation as resolved.
}
],
"returns": {
"description": "Returns a converted vector data cube.",
Comment thread
PondiB marked this conversation as resolved.
Outdated
"schema": {
"type": "object",
"subtype": "datacube",
"dimensions": [
{
"type": "geometry"
}
]
}
}
}