]> git.openstreetmap.org Git - nominatim.git/blob - lib/lib.php
39bc90d7acc458203bc64a66cb3cafbedc918bd4
[nominatim.git] / lib / lib.php
1 <?php
2
3 require_once(CONST_BasePath.'/lib/ClassTypes.php');
4
5 function fail($sError, $sUserError = false)
6 {
7     if (!$sUserError) $sUserError = $sError;
8     error_log('ERROR: '.$sError);
9     echo $sUserError."\n";
10     exit(-1);
11 }
12
13
14 function getProcessorCount()
15 {
16     $sCPU = file_get_contents('/proc/cpuinfo');
17     preg_match_all('#processor\s+: [0-9]+#', $sCPU, $aMatches);
18     return count($aMatches[0]);
19 }
20
21
22 function getTotalMemoryMB()
23 {
24     $sCPU = file_get_contents('/proc/meminfo');
25     preg_match('#MemTotal: +([0-9]+) kB#', $sCPU, $aMatches);
26     return (int)($aMatches[1]/1024);
27 }
28
29
30 function getCacheMemoryMB()
31 {
32     $sCPU = file_get_contents('/proc/meminfo');
33     preg_match('#Cached: +([0-9]+) kB#', $sCPU, $aMatches);
34     return (int)($aMatches[1]/1024);
35 }
36
37 function getDatabaseDate(&$oDB)
38 {
39     // Find the newest node in the DB
40     $iLastOSMID = $oDB->getOne("select max(osm_id) from place where osm_type = 'N'");
41     // Lookup the timestamp that node was created
42     $sLastNodeURL = 'https://www.openstreetmap.org/api/0.6/node/'.$iLastOSMID.'/1';
43     $sLastNodeXML = file_get_contents($sLastNodeURL);
44
45     if ($sLastNodeXML === false) {
46         return false;
47     }
48
49     preg_match('#timestamp="(([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z)"#', $sLastNodeXML, $aLastNodeDate);
50
51     return $aLastNodeDate[1];
52 }
53
54
55 function byImportance($a, $b)
56 {
57     if ($a['importance'] != $b['importance'])
58         return ($a['importance'] > $b['importance']?-1:1);
59
60     return ($a['foundorder'] < $b['foundorder']?-1:1);
61 }
62
63
64 function javascript_renderData($xVal, $iOptions = 0)
65 {
66     $iOptions |= JSON_UNESCAPED_UNICODE;
67     if (isset($_GET['pretty']) && in_array(strtolower($_GET['pretty']), array('1', 'true'))) {
68         $iOptions |= JSON_PRETTY_PRINT;
69     }
70
71     $jsonout = json_encode($xVal, $iOptions);
72
73     if (!isset($_GET['json_callback'])) {
74         header('Content-Type: application/json; charset=UTF-8');
75         echo $jsonout;
76     } else {
77         if (preg_match('/^[$_\p{L}][$_\p{L}\p{Nd}.[\]]*$/u', $_GET['json_callback'])) {
78             header('Content-Type: application/javascript; charset=UTF-8');
79             echo $_GET['json_callback'].'('.$jsonout.')';
80         } else {
81             header('HTTP/1.0 400 Bad Request');
82         }
83     }
84 }
85
86
87 function getAddressDetails(&$oDB, $sLanguagePrefArraySQL, $iPlaceID, $sCountryCode = false, $housenumber = -1, $bRaw = false)
88 {
89     $sSQL = "select *,get_name_by_language(name,$sLanguagePrefArraySQL) as localname from get_addressdata($iPlaceID, $housenumber)";
90     if (!$bRaw) $sSQL .= " WHERE isaddress OR type = 'country_code'";
91     $sSQL .= ' order by rank_address desc,isaddress desc';
92
93     $aAddressLines = chksql($oDB->getAll($sSQL));
94     if ($bRaw) return $aAddressLines;
95     //echo "<pre>";
96     //var_dump($aAddressLines);
97     $aAddress = array();
98     $aFallback = array();
99     foreach ($aAddressLines as $aLine) {
100         $bFallback = false;
101         $aTypeLabel = Nominatim\ClassTypes\getInfo($aLine);
102
103         if ($aTypeLabel === false) {
104             $aTypeLabel = Nominatim\ClassTypes\getFallbackInfo($aLine);
105             $bFallback = true;
106         }
107
108         if ((isset($aLine['localname']) && $aLine['localname']) || (isset($aLine['housenumber']) && $aLine['housenumber'])) {
109             $sTypeLabel = strtolower(isset($aTypeLabel['simplelabel'])?$aTypeLabel['simplelabel']:$aTypeLabel['label']);
110             $sTypeLabel = str_replace(' ', '_', $sTypeLabel);
111             if (!isset($aAddress[$sTypeLabel]) || (isset($aFallback[$sTypeLabel]) && $aFallback[$sTypeLabel]) || $aLine['class'] == 'place') {
112                 $aAddress[$sTypeLabel] = $aLine['localname']?$aLine['localname']:$aLine['housenumber'];
113             }
114             $aFallback[$sTypeLabel] = $bFallback;
115         }
116     }
117     return $aAddress;
118 }
119
120
121 function addQuotes($s)
122 {
123     return "'".$s."'";
124 }
125
126 function parseLatLon($sQuery)
127 {
128     $sFound    = null;
129     $fQueryLat = null;
130     $fQueryLon = null;
131
132     if (preg_match('/\\s*([NS])[ ]+([0-9]+[0-9.]*)[° ]+([0-9.]+)?[′\']*[, ]+([EW])[ ]+([0-9]+)[° ]+([0-9]+[0-9.]*)[′\']*\\s*/', $sQuery, $aData)) {
133         /*               1         2                   3                    4         5            6
134          * degrees decimal minutes
135          * N 40 26.767, W 79 58.933
136          * N 40°26.767′, W 79°58.933′
137          */
138         $sFound    = $aData[0];
139         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60);
140         $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[5] + $aData[6]/60);
141     } elseif (preg_match('/\\s*([0-9]+)[° ]+([0-9]+[0-9.]*)?[′\']*[ ]+([NS])[, ]+([0-9]+)[° ]+([0-9]+[0-9.]*)?[′\' ]+([EW])\\s*/', $sQuery, $aData)) {
142         /*                     1            2                         3          4            5                      6
143          * degrees decimal minutes
144          * 40 26.767 N, 79 58.933 W
145          * 40° 26.767′ N 79° 58.933′ W
146          */
147         $sFound    = $aData[0];
148         $fQueryLat = ($aData[3]=='N'?1:-1) * ($aData[1] + $aData[2]/60);
149         $fQueryLon = ($aData[6]=='E'?1:-1) * ($aData[4] + $aData[5]/60);
150     } elseif (preg_match('/\\s*([NS])[ ]([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+)[″"]*[, ]+([EW])[ ]([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+)[″"]*\\s*/', $sQuery, $aData)) {
151         /*                     1        2            3              4                 5        6            7              8
152          * degrees decimal seconds
153          * N 40 26 46 W 79 58 56
154          * N 40° 26′ 46″, W 79° 58′ 56″
155          */
156         $sFound    = $aData[0];
157         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60 + $aData[4]/3600);
158         $fQueryLon = ($aData[5]=='E'?1:-1) * ($aData[6] + $aData[7]/60 + $aData[8]/3600);
159     } elseif (preg_match('/\\s*([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+[0-9.]*)[″" ]+([NS])[, ]+([0-9]+)[° ]+([0-9]+)[′\' ]+([0-9]+[0-9.]*)[″" ]+([EW])\\s*/', $sQuery, $aData)) {
160         /*                     1            2              3                    4          5            6              7                     8
161          * degrees decimal seconds
162          * 40 26 46 N 79 58 56 W
163          * 40° 26′ 46″ N, 79° 58′ 56″ W
164          * 40° 26′ 46.78″ N, 79° 58′ 56.89″ W
165          */
166         $sFound    = $aData[0];
167         $fQueryLat = ($aData[4]=='N'?1:-1) * ($aData[1] + $aData[2]/60 + $aData[3]/3600);
168         $fQueryLon = ($aData[8]=='E'?1:-1) * ($aData[5] + $aData[6]/60 + $aData[7]/3600);
169     } elseif (preg_match('/\\s*([NS])[ ]([0-9]+[0-9]*\\.[0-9]+)[°]*[, ]+([EW])[ ]([0-9]+[0-9]*\\.[0-9]+)[°]*\\s*/', $sQuery, $aData)) {
170         /*                     1        2                               3        4
171          * degrees decimal
172          * N 40.446° W 79.982°
173          */
174         $sFound    = $aData[0];
175         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2]);
176         $fQueryLon = ($aData[3]=='E'?1:-1) * ($aData[4]);
177     } elseif (preg_match('/\\s*([0-9]+[0-9]*\\.[0-9]+)[° ]+([NS])[, ]+([0-9]+[0-9]*\\.[0-9]+)[° ]+([EW])\\s*/', $sQuery, $aData)) {
178         /*                     1                           2          3                           4
179          * degrees decimal
180          * 40.446° N 79.982° W
181          */
182         $sFound    = $aData[0];
183         $fQueryLat = ($aData[2]=='N'?1:-1) * ($aData[1]);
184         $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[3]);
185     } elseif (preg_match('/(\\s*\\[|^\\s*|\\s*)(-?[0-9]+[0-9]*\\.[0-9]+)[, ]+(-?[0-9]+[0-9]*\\.[0-9]+)(\\]\\s*|\\s*$|\\s*)/', $sQuery, $aData)) {
186         /*                 1                   2                             3                        4
187          * degrees decimal
188          * 12.34, 56.78
189          * 12.34 56.78
190          * [12.456,-78.90]
191          */
192         $sFound    = $aData[0];
193         $fQueryLat = $aData[2];
194         $fQueryLon = $aData[3];
195     } else {
196         return false;
197     }
198
199     return array($sFound, $fQueryLat, $fQueryLon);
200 }
201
202
203 function geometryText2Points($geometry_as_text, $fRadius)
204 {
205     $aPolyPoints = null;
206     if (preg_match('#POLYGON\\(\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
207         //
208         preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
209         //
210     } elseif (preg_match('#LINESTRING\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
211         //
212         preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
213         //
214     } elseif (preg_match('#MULTIPOLYGON\\(\\(\\(([- 0-9.,]+)#', $geometry_as_text, $aMatch)) {
215         //
216         preg_match_all('/(-?[0-9.]+) (-?[0-9.]+)/', $aMatch[1], $aPolyPoints, PREG_SET_ORDER);
217         //
218     } elseif (preg_match('#POINT\\((-?[0-9.]+) (-?[0-9.]+)\\)#', $geometry_as_text, $aMatch)) {
219         //
220         $aPolyPoints = createPointsAroundCenter($aMatch[1], $aMatch[2], $fRadius);
221         //
222     }
223
224     if (isset($aPolyPoints)) {
225         $aResultPoints = array();
226         foreach ($aPolyPoints as $aPoint) {
227             $aResultPoints[] = array($aPoint[1], $aPoint[2]);
228         }
229         return $aResultPoints;
230     }
231
232     return;
233 }
234
235 function createPointsAroundCenter($fLon, $fLat, $fRadius)
236 {
237     $iSteps = max(8, min(100, ($fRadius * 40000)^2));
238     $fStepSize = (2*pi())/$iSteps;
239     $aPolyPoints = array();
240     for ($f = 0; $f < 2*pi(); $f += $fStepSize) {
241         $aPolyPoints[] = array('', $fLon+($fRadius*sin($f)), $fLat+($fRadius*cos($f)) );
242     }
243     return $aPolyPoints;
244 }
245
246 function closestHouseNumber($aRow)
247 {
248     $fHouse = $aRow['startnumber']
249                 + ($aRow['endnumber'] - $aRow['startnumber']) * $aRow['fraction'];
250
251     switch ($aRow['interpolationtype']) {
252         case 'odd':
253             $iHn = (int)($fHouse/2) * 2 + 1;
254             break;
255         case 'even':
256             $iHn = (int)(round($fHouse/2)) * 2;
257             break;
258         default:
259             $iHn = (int)(round($fHouse));
260             break;
261     }
262
263     return max(min($aRow['endnumber'], $iHn), $aRow['startnumber']);
264 }