{ "id" : "PCGridify", "title" : "Point Cloud Gridifier", "version" : "1.0.0", "jobControlOptions": [ "sync-execute" ], "outputTransmission" : [ "value" ], "description" : "This process gridifies a point cloud into either a DEM or an ortho photo", "links" : [ { "href" : "https://maps.gnosis.earth/ogcapi/processes/PCGridify/execution", "rel" : "http://www.opengis.net/def/rel/ogc/1.0/execute", "title" : "Execution endpoint" } ], "inputs" : { "data" : { "title" : "The source point cloud", "description" : "The collection containing the point cloud data.", "minOccurs" : 1, "maxOccurs" : 1, "schema" : { "type": "string", "contentEncoding" : "binary", "contentMediaType" : "application/vnd.las" } }, "output" : { "title" : "Whether to return a DEM or an orthophoto", "description" : "This provides a mechanism to select the DEM or the RGB imagery until output selection is implemented.", "minOccurs" : 0, "maxOccurs" : 1, "schema" : { "type" : "string", "enum" : [ "dem", "rgb" ], "default" : "dem" } }, "fillDistance" : { "title" : "Distance to fill gaps", "description" : "The maximum distance with which to look for filling gaps, in pixel/cell-space of the output for the native scale.", "minOccurs" : 0, "maxOccurs" : 1, "schema" : { "type" : "integer", "default" : 7 } }, "classes" : { "title" : "Classes to include in result", "description" : "For a classified point cloud, the classes to include in results.", "minOccurs" : 0, "maxOccurs" : "unbounded", "schema" : { "type" : "string", "enum" : [ "all", "neverClassified", "unclassified", "ground", "lowVegetation", "mediumVegetation", "highVegetation", "building", "lowPointNoise", "modelKeyPoint", "water", "rail", "roadSurface", "overlapPoints", "wireGuardShield", "wireConductor", "transmissionTower", "wireConnector", "bridgeDeck", "highNoise" ] } } }, "outputs" : { "result" : { "title" : "Result", "description" : "The resulting DEM or orthorectified imagery", "schema" : { "oneOf": [ { "type": "string", "contentEncoding": "binary", "contentMediaType": "image/tiff; application=geotiff" }, { "type": "string", "contentEncoding": "binary", "contentMediaType": "image/png" } ] } } } }