You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
geo.lua - helper library for Redis geospatial indices
1
+
geo.lua - helper library for Redis geospatial indices:earth_africa:
2
2
===
3
3
4
4
This is a Lua library containing miscellaneous geospatial helper routines for use with [Redis](http://redis.io). It requires the [GEO API](http://redis.io/commands#geo), available from v3.2.
@@ -9,12 +9,12 @@ In broad strokes, the library provides:
9
9
* GeoJSON [decoding](#GEOJSONADD) and [encoding](#GEOJSONENCODE)
10
10
* A playground for testing experimental geospatial APIs
11
11
12
-
The library is strictly metric, sorry.
12
+
The library is strictly :straight_ruler:metric, sorry.
13
13

14
14
15
15
Using geo.lua
16
16
---
17
-
The library is an ordinary Redis Lua script - use[`EVAL`](http://redis.io/commands/eval) or [`EVALSHA`](http://redis.io/commands/evalsha) to call it. The following example demonstrates usage from the prompt:
17
+
The library is an ordinary Redis Lua script - use[`EVAL`](http://redis.io/commands/eval) or [`EVALSHA`](http://redis.io/commands/evalsha) to call it. The following example demonstrates usage from the prompt:
18
18
19
19
````Bash
20
20
$ redis-cli SCRIPT LOAD "$(cat geo.lua)"
@@ -132,13 +132,13 @@ Returns the distance between members.
132
132
Perform cylinder-bound search.
133
133
134
134
#### [TBD] GEOZCYLINDERBYMEMBER
135
-
Perform cylinder-bound search by member (20-characters command!).
135
+
Perform cylinder-bound search by member (a 20 characters command!).
136
136
137
137
#### [TBD] GEOZSPHERE
138
138
Useful for directing air traffic and impact research (bombs, comets).
139
139
140
140
#### [TBD] GEOZCONE
141
-
Good for comparing UFO sightings vis a vis cow abduction data.
141
+
Good for comparing :alien: sightings vis a vis :cow: abduction data.
142
142
143
143
### Motility
144
144
Storing each member's vector in an additional hash data structure, where the field is the member's name and the value is the serialized vector (bearing & velocity).
0 commit comments