GEOHASH key member [member ...]
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).
Normally Redis represents positions of elements using a variation of the Geohash technique where positions are encoded using 52 bit integers. The encoding is also different compared to the standard because the initial min and max coordinates used during the encoding and decoding process are different. This command however returns a standard Geohash in the form of a string as described in the Wikipedia article and compatible with the geohash.org web site.
The command returns 11 characters Geohash strings, so no precision is loss compared to the Redis internal 52 bit representation. The returned Geohashes have the following properties:
geohash.org
URLs such as http://geohash.org/<geohash-string>
. This is an example of such URL.Array reply, specifically:
The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
(integer) 2
redis> GEOHASH Sicily Palermo Catania 1) "sqc8b49rny0"
2) "sqdtr74hyu0"
© 2009–2017 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/geohash