ExpGeoBin Method

Create geospatial bin expression.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp GeoBin(
	string name
)

Parameters

name  String
 

Return Value

Exp

Example

C#
// Geo bin "a" == region
string region = "{ \"type\": \"AeroCircle\", \"coordinates\": [[-122.0, 37.5], 50000.0] }";
Exp.GeoCompare(Exp.GeoBin("loc"), Exp.Geo(region))

See Also