Skip to content

Mock Point Source

The [MockPointSource] is a source operator that provides mock vector point data for testing and development purposes.

NameTypeDescriptionExamples
pointsarrayPoints to be output by the mock point source.
spatialBoundsSpatialBoundsDeriveDefines how the spatial bounds of the source are derived.

Defaults to None.
{
"type": "MockPointSource",
"params": {
"points": [
{
"x": 1,
"y": 2
},
{
"x": 3,
"y": 4
}
],
"spatialBounds": {
"type": "derive"
}
}
}