GeoHashStepsBetween Method |
Counts the number of geohashes contained between the two (ie how many
times next() is called to increment from one to two) This value depends
on the number of significant bits.
Namespace:
VelocityDBExtensions.Geo
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntaxpublic static long StepsBetween(
GeoHash one,
GeoHash two
)
Public Shared Function StepsBetween (
one As GeoHash,
two As GeoHash
) As Long
public:
static long long StepsBetween(
GeoHash^ one,
GeoHash^ two
)
static member StepsBetween :
one : GeoHash *
two : GeoHash -> int64
Parameters
- one
- Type: VelocityDBExtensions.GeoGeoHash
[Missing <param name="one"/> documentation for "M:VelocityDBExtensions.Geo.GeoHash.StepsBetween(VelocityDBExtensions.Geo.GeoHash,VelocityDBExtensions.Geo.GeoHash)"]
- two
- Type: VelocityDBExtensions.GeoGeoHash
[Missing <param name="two"/> documentation for "M:VelocityDBExtensions.Geo.GeoHash.StepsBetween(VelocityDBExtensions.Geo.GeoHash,VelocityDBExtensions.Geo.GeoHash)"]
Return Value
Type:
Int64 number of steps
See Also