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
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,17 @@ $ python setup.py install
12
12
13
13
The module is not on PyPi yet.
14
14
15
+
If you get an error similar to
16
+
17
+
```
18
+
OSError: Could not find library geos_c or load any of its variants ['libgeos_c.so.1', 'libgeos_c.so']
19
+
```
20
+
21
+
you can install the required libraries on linux with
22
+
```
23
+
$ sudo apt-get install libgeos-c1 libgeos-3.4.2
24
+
```
25
+
15
26
## Use it
16
27
17
28
```python
@@ -53,13 +64,9 @@ api = overpass.API(timeout=600)
53
64
54
65
Setting this to `True` will get you debug output.
55
66
56
-
#### `bbox`
57
-
58
-
This takes a list in the form `[minlon, minlat, maxlon, maxlat]`, the default is the world: `[-180.0, -90.0, 180.0, 90.0]`
59
-
60
67
### Simple queries
61
68
62
-
In addition to just send you query and parse it, the wrapper provides shortcuts for often used map queries. To use them, just pass them like to normal query to the API.
69
+
In addition to just send your query and parse the result, the wrapper provides shortcuts for often used map queries. To use them, just pass them like to normal query to the API.
0 commit comments