]> git.openstreetmap.org Git - nominatim.git/commitdiff
document polygon_threashold parameter
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 15 May 2018 21:28:39 +0000 (23:28 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 15 May 2018 21:30:58 +0000 (23:30 +0200)
Fixes #1041.

docs/api/Reverse.md
docs/api/Search.md

index 999827a1aa3655e9c4f1684880a203872063732c..0c3c3d6500ca33a1597bd30c28b291daf9594439 100644 (file)
@@ -57,6 +57,12 @@ https://nominatim.openstreetmap.org/reverse?<query>
 * `polygon_text=1`
     * Output geometry of results as a WKT.
 
+* `polygon_threshold=0.0`
+    * defaults to 0.0
+    * Simplify the output geometry before returning. The parameter is the
+      tolerance in degrees with which the geometry may differ from the original
+      geometry. Topology is preserved in the result.
+
 * `extratags=1`
     * Include additional information in the result if available, e.g. wikipedia link, opening hours.
 
index e166abaf60a7f1f74e20c786d4ba32f10966ca39..17e745877e74e3bbe707ad3cae54d5672fae6abf 100644 (file)
@@ -106,6 +106,12 @@ Structured requests are faster and require fewer server resources. **Do not comb
 * `polygon_text=1`
     * Output geometry of results as a WKT.
 
+* `polygon_threshold=0.0`
+    * defaults to 0.0
+    * Simplify the output geometry before returning. The parameter is the
+      tolerance in degrees with which the geometry may differ from the original
+      geometry. Topology is preserved in the result.
+
 * `extratags=1`
     * Include additional information in the result if available, e.g. wikipedia link, opening hours.
 
@@ -213,4 +219,4 @@ Structured requests are faster and require fewer server resources. **Do not comb
         "place_id": "1453068",
         "type": "bakery"
     }
-```
\ No newline at end of file
+```