Description
The "RasterizeBulk" beta endpoint allows you to obtain the DGGS Indices of many Geographies at once on the Earth. This endpoint is used to process multiple Geographies in order to minimize the latency of sequential processing of each Geography. This could be useful for searching for non-geospatial attributes associated to this particular Geography at an aggregated view.
Proto Definition
service BGSearchBeta {
rpc RasterizeBulk(RasterizeBulkArgs) returns (RasterizeBulkResult) {}
}
Input Message
Name: geometries
The type of geometries
is an array of RasterizeArgs
which you can reference here
Attribute | Type | Description |
---|---|---|
geometries | RasterizeArgs[] | The list of Rasterize arguments. |
message RasterizeBulkArgs {
repeated RasterizeArgs geometries = 1;
}
Output Message
Name: results
The individual type for RasterizeResult
can be found here
Attribute | Type | Description |
---|---|---|
results | RasterizeResult[] | The results of the Rasterization for all the geometries provided. |
message RasterizeBulkResult {
repeated RasterizeResult results = 1;
}