Create geospatial bin expression.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.0.0.0 (5.0.0)
Syntax
C#
public static Exp GeoBin( string name )
Parameters
- name
- Type: SystemString
Return Value
Type: ExpExamples
// 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