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

AttributeTypeDescription
geometriesRasterizeArgs[]The list of Rasterize arguments.
message RasterizeBulkArgs {
  repeated RasterizeArgs geometries = 1;
}

Output Message

Name: results

The individual type for RasterizeResult can be found here

AttributeTypeDescription
resultsRasterizeResult[]The results of the Rasterization for all the geometries provided.

message RasterizeBulkResult {
  repeated RasterizeResult results = 1;
}