2 require_once(dirname(dirname(__FILE__)).'/lib/init-website.php');
3 require_once(CONST_BasePath.'/lib/log.php');
5 $sOutputFormat = 'html';
7 $fLoadAvg = getLoadAverage();
10 echo "Page temporarily blocked due to high server load\n";
14 ini_set('memory_limit', '200M');
18 $aLangPrefOrder = getPreferredLanguages();
19 $sLanguagePrefArraySQL = "ARRAY[".join(',',array_map("getDBQuoted",$aLangPrefOrder))."]";
21 if (isset($_GET['osmtype']) && isset($_GET['osmid']) && (int)$_GET['osmid'] && ($_GET['osmtype'] == 'N' || $_GET['osmtype'] == 'W' || $_GET['osmtype'] == 'R'))
23 $_GET['place_id'] = $oDB->getOne("select place_id from placex where osm_type = '".$_GET['osmtype']."' and osm_id = ".(int)$_GET['osmid']." order by type = 'postcode' asc");
25 // Be nice about our error messages for broken geometry
26 if (!$_GET['place_id'])
28 $aPointDetails = $oDB->getRow("select osm_type, osm_id, errormessage, class, type, get_name_by_language(name,$sLanguagePrefArraySQL) as localname, ST_AsText(prevgeometry) as prevgeom, ST_AsText(newgeometry) as newgeom from import_polygon_error where osm_type = '".$_GET['osmtype']."' and osm_id = ".(int)$_GET['osmid']." order by updated desc limit 1");
29 if (!PEAR::isError($aPointDetails) && $aPointDetails) {
30 if (preg_match('/\[(-?\d+\.\d+) (-?\d+\.\d+)\]/', $aPointDetails['errormessage'], $aMatches))
32 $aPointDetails['error_x'] = $aMatches[1];
33 $aPointDetails['error_y'] = $aMatches[2];
35 include(CONST_BasePath.'/lib/template/details-error-'.$sOutputFormat.'.php');
41 if (!isset($_GET['place_id']))
43 echo "Please select a place id";
47 $iPlaceID = (int)$_GET['place_id'];
49 $iParentPlaceID = $oDB->getOne('select parent_place_id from location_property_tiger where place_id = '.$iPlaceID);
50 if ($iParentPlaceID) $iPlaceID = $iParentPlaceID;
51 $iParentPlaceID = $oDB->getOne('select parent_place_id from location_property_aux where place_id = '.$iPlaceID);
52 if ($iParentPlaceID) $iPlaceID = $iParentPlaceID;
54 $hLog = logStart($oDB, 'details', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
56 // Make sure the point we are reporting on is fully indexed
57 //$sSQL = "UPDATE placex set indexed = true where indexed = false and place_id = $iPlaceID";
60 // Get the details for this point
61 $sSQL = "select place_id, osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, importance, wikipedia,";
62 $sSQL .= " to_char(indexed_date, 'YYYY-MM-DD HH24:MI') as indexed_date, parent_place_id, rank_address, rank_search, get_searchrank_label(rank_search) as rank_search_label, get_name_by_language(name,$sLanguagePrefArraySQL) as localname, ";
63 $sSQL .= " ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') as isarea, ";
64 $sSQL .= " ST_AsText(CASE WHEN ST_NPoints(geometry) > 5000 THEN ST_SimplifyPreserveTopology(geometry, 0.0001) ELSE geometry END) as outlinestring";
65 $sSQL .= " from placex where place_id = $iPlaceID";
66 $aPointDetails = $oDB->getRow($sSQL);
67 if (PEAR::IsError($aPointDetails))
69 failInternalError("Could not get details of place object.", $sSQL, $aPointDetails);
72 $aPointDetails['localname'] = $aPointDetails['localname']?$aPointDetails['localname']:$aPointDetails['housenumber'];
74 $aClassType = getClassTypesWithImportance();
75 $aPointDetails['icon'] = $aClassType[$aPointDetails['class'].':'.$aPointDetails['type']]['icon'];
77 // Get all alternative names (languages, etc)
78 $sSQL = "select (each(name)).key,(each(name)).value from placex where place_id = $iPlaceID order by (each(name)).key";
79 $aPointDetails['aNames'] = $oDB->getAssoc($sSQL);
82 $sSQL = "select (each(extratags)).key,(each(extratags)).value from placex where place_id = $iPlaceID order by (each(extratags)).key";
83 $aPointDetails['aExtraTags'] = $oDB->getAssoc($sSQL);
86 $aAddressLines = getAddressDetails($oDB, $sLanguagePrefArraySQL, $iPlaceID, $aPointDetails['country_code'], true);
89 $sSQL = "select placex.place_id, osm_type, osm_id, class, type, housenumber, admin_level, rank_address, ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') as isarea, st_distance(geometry, placegeometry) as distance, ";
90 $sSQL .= " get_name_by_language(name,$sLanguagePrefArraySQL) as localname, length(name::text) as namelength ";
91 $sSQL .= " from placex, (select geometry as placegeometry from placex where place_id = $iPlaceID) as x";
92 $sSQL .= " where linked_place_id = $iPlaceID";
93 $sSQL .= " order by rank_address asc,rank_search asc,get_name_by_language(name,$sLanguagePrefArraySQL),housenumber";
94 $aLinkedLines = $oDB->getAll($sSQL);
96 // All places this is an imediate parent of
97 $sSQL = "select obj.place_id, osm_type, osm_id, class, type, housenumber, admin_level, rank_address, ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') as isarea, st_distance(geometry, placegeometry) as distance, ";
98 $sSQL .= " get_name_by_language(name,$sLanguagePrefArraySQL) as localname, length(name::text) as namelength ";
99 $sSQL .= " from (select placex.place_id, osm_type, osm_id, class, type, housenumber, admin_level, rank_address, rank_search, geometry, name from placex ";
100 $sSQL .= " where parent_place_id = $iPlaceID order by rank_address asc,rank_search asc limit 500) as obj,";
101 $sSQL .= " (select geometry as placegeometry from placex where place_id = $iPlaceID) as x";
102 $sSQL .= " order by rank_address asc,rank_search asc,localname,housenumber";
103 $aParentOfLines = $oDB->getAll($sSQL);
105 $aPlaceSearchNameKeywords = false;
106 $aPlaceSearchAddressKeywords = false;
107 if (isset($_GET['keywords']) && $_GET['keywords'])
109 $sSQL = "select * from search_name where place_id = $iPlaceID";
110 $aPlaceSearchName = $oDB->getRow($sSQL);
111 $sSQL = "select * from word where word_id in (".substr($aPlaceSearchName['name_vector'],1,-1).")";
112 $aPlaceSearchNameKeywords = $oDB->getAll($sSQL);
113 $sSQL = "select * from word where word_id in (".substr($aPlaceSearchName['nameaddress_vector'],1,-1).")";
114 $aPlaceSearchAddressKeywords = $oDB->getAll($sSQL);
117 logEnd($oDB, $hLog, 1);
119 include(CONST_BasePath.'/lib/template/details-'.$sOutputFormat.'.php');