X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c0b44113371bd40c74b90b0e49dc0ff63e672a4f..71cc8f49776ef9c434110d9744f0f9c69d9835ed:/lib/lib.php?ds=sidebyside
diff --git a/lib/lib.php b/lib/lib.php
index e14f52f9..f020a8b2 100644
--- a/lib/lib.php
+++ b/lib/lib.php
@@ -494,7 +494,10 @@ function _debugDumpGroupedSearches($aData, $aTokens)
}
}
echo "
";
- echo "rank | Name Tokens | Name Not | Address Tokens | Address Not | country | operator | class | type | house# | Lat | Lon | Radius |
";
+ echo "rank | Name Tokens | Name Not | ";
+ echo "Address Tokens | Address Not | country | ";
+ echo "operator | class | type | house# | ";
+ echo "Lat | Lon | Radius |
";
foreach ($aData as $iRank => $aRankedSet) {
foreach ($aRankedSet as $aRow) {
echo "";
@@ -691,10 +694,10 @@ function geometryText2Points($geometry_as_text, $fRadius)
//
preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
//
- } elseif (preg_match('#MULTIPOLYGON\\(\\(\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
+/* } elseif (preg_match('#MULTIPOLYGON\\(\\(\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
//
preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
- //
+ */
} elseif (preg_match('#POINT\\((-?[0-9.]+) (-?[0-9.]+)\\)#', $geometry_as_text, $aMatch)) {
//
$aPolyPoints = createPointsAroundCenter($aMatch[1], $aMatch[2], $fRadius);