Skip to content

Commit fd5d8fe

Browse files
DOC-2540 added doc code samples for geospatial (#288)
1 parent e5ae8cd commit fd5d8fe

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

tests/Doc/Geo_tutorial.cs

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
// EXAMPLE: geo_tutorial
2+
// HIDE_START
3+
4+
using NRedisStack.Tests;
5+
using StackExchange.Redis;
6+
7+
// HIDE_END
8+
9+
// REMOVE_START
10+
namespace Doc;
11+
[Collection("DocsTests")]
12+
// REMOVE_END
13+
14+
// HIDE_START
15+
public class Geo_tutorial
16+
{
17+
18+
[SkipIfRedis(Is.OSSCluster)]
19+
public void run()
20+
{
21+
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
22+
var db = muxer.GetDatabase();
23+
//REMOVE_START
24+
// Clear any keys here before using them in tests.
25+
db.KeyDelete("bikes:rentable");
26+
//REMOVE_END
27+
// HIDE_END
28+
29+
30+
// STEP_START geoadd
31+
bool res1 = db.GeoAdd("bikes:rentable", -122.27652, 37.805186, "station:1");
32+
Console.WriteLine(res1); // >>> True
33+
34+
bool res2 = db.GeoAdd("bikes:rentable", -122.2674626, 37.8062344, "station:2");
35+
Console.WriteLine(res2); // >>> True
36+
37+
bool res3 = db.GeoAdd("bikes:rentable", -122.2469854, 37.8104049, "station:3");
38+
Console.WriteLine(res3); // >>> True
39+
// STEP_END
40+
41+
// Tests for 'geoadd' step.
42+
// REMOVE_START
43+
Assert.True(res1);
44+
Assert.True(res2);
45+
Assert.True(res3);
46+
// REMOVE_END
47+
48+
49+
// STEP_START geosearch
50+
GeoRadiusResult[] res4 = db.GeoSearch("bikes:rentable",
51+
-122.27652,
52+
37.805186,
53+
new GeoSearchCircle(5, GeoUnit.Kilometers)
54+
);
55+
56+
foreach (GeoRadiusResult member in res4)
57+
{
58+
Console.WriteLine($"Member: '{member.Member}', distance: {member.Distance}, position: {member.Position}");
59+
}
60+
// >>> Member: 'station:1', distance: 0.0001, position: -122.27652043104172 37.80518485897756
61+
// >>> Member: 'station:2', distance: 0.8047, position: -122.26745992898941 37.80623423353753
62+
// >>> Member: 'station:3', distance: 2.6596, position: -122.24698394536972 37.81040384984464
63+
// STEP_END
64+
65+
// Tests for 'geosearch' step.
66+
// REMOVE_START
67+
Assert.Equal(3, res4.Length);
68+
Assert.Equal(
69+
"Member: 'station:1', distance: 0.0001, position: -122.27652043104172 37.80518485897756",
70+
$"Member: '{res4[0].Member}', distance: {res4[0].Distance}, position: {res4[0].Position}"
71+
);
72+
Assert.Equal(
73+
"Member: 'station:2', distance: 0.8047, position: -122.26745992898941 37.80623423353753",
74+
$"Member: '{res4[1].Member}', distance: {res4[1].Distance}, position: {res4[1].Position}"
75+
);
76+
Assert.Equal(
77+
"Member: 'station:3', distance: 2.6596, position: -122.24698394536972 37.81040384984464",
78+
$"Member: '{res4[2].Member}', distance: {res4[2].Distance}, position: {res4[2].Position}"
79+
);
80+
// REMOVE_END
81+
82+
83+
// HIDE_START
84+
}
85+
}
86+
// HIDE_END
87+

0 commit comments

Comments
 (0)