]> git.openstreetmap.org Git - nominatim.git/blob - lib-php/output.php
Merge pull request #2391 from lonvia/fix-sonar-issues
[nominatim.git] / lib-php / output.php
1 <?php
2
3
4 function formatOSMType($sType, $bIncludeExternal = true)
5 {
6     if ($sType == 'N') {
7         return 'node';
8     }
9     if ($sType == 'W') {
10         return 'way';
11     }
12     if ($sType == 'R') {
13         return 'relation';
14     }
15
16     if (!$bIncludeExternal) {
17         return '';
18     }
19
20     if ($sType == 'T') {
21         return 'way';
22     }
23     if ($sType == 'I') {
24         return 'way';
25     }
26
27     // not handled: P, L
28
29     return '';
30 }