Description
The "PointToDGGSIndex" beta endpoint allows you to obtain the DGGS Index associated with a Geographical Point on the earth. This could be useful for searching for non-geospatial attributes associated to this particular point at an aggregated view.
Proto Definition
service BGSearchBeta {
rpc PointToDGGSIndex (LatLng) returns (DGGSIndex) {}
}
Input Message
Name: LatLng
The LatLng
is a Geographical Point on the earth, defined here .
Output Message
Name: index
Attribute | Type | Description |
---|---|---|
index | string | The DGGS Index of the Point. |
message DGGSIndex {
string index = 1;
}