@@ -110,7 +114,7 @@
kv('Name' , hash_to_subtable($aPointDetails['aNames']) );
kv('Type' , $aPointDetails['class'].':'.$aPointDetails['type'] );
- kv('Last Updated' , $aPointDetails['indexed_date'] );
+ kv('Last Updated' , (new DateTime('@'.$aPointDetails['indexed_epoch']))->format(DateTime::RFC822) );
kv('Admin Level' , $aPointDetails['admin_level'] );
kv('Rank' , $aPointDetails['rank_search_label'] );
if ($aPointDetails['calculated_importance']) {
@@ -124,6 +128,8 @@
kv('Wikipedia Calculated' , wikipediaLink($aPointDetails) );
}
+ kv('Computed Postcode', $aPointDetails['postcode']);
+ kv('Address Tags' , hash_to_subtable($aPointDetails['aAddressTags']) );
kv('Extra Tags' , hash_to_subtable($aPointDetails['aExtraTags']) );
?>
@@ -147,6 +153,7 @@
Local name |
Type |
OSM |
+
Address rank |
Admin level |
Distance |
|
@@ -177,17 +184,14 @@
- if ($aPlaceSearchNameKeywords)
+ if ($bIncludeKeywords)
{
headline('Name Keywords');
foreach($aPlaceSearchNameKeywords as $aRow)
{
_one_keyword_row($aRow['word_token'], $aRow['word_id']);
}
- }
- if ($aPlaceSearchAddressKeywords)
- {
headline('Address Keywords');
foreach($aPlaceSearchAddressKeywords as $aRow)
{
@@ -195,12 +199,12 @@
}
}
- if (sizeof($aParentOfLines))
+ if (!empty($aHierarchyLines))
{
headline('Parent Of');
$aGroupedAddressLines = array();
- foreach($aParentOfLines as $aAddressLine)
+ foreach($aHierarchyLines as $aAddressLine)
{
if ($aAddressLine['type'] == 'yes') $sType = $aAddressLine['class'];
else $sType = $aAddressLine['type'];
@@ -209,17 +213,17 @@
$aGroupedAddressLines[$sType] = array();
$aGroupedAddressLines[$sType][] = $aAddressLine;
}
- foreach($aGroupedAddressLines as $sGroupHeading => $aParentOfLines)
+ foreach($aGroupedAddressLines as $sGroupHeading => $aHierarchyLines)
{
$sGroupHeading = ucwords($sGroupHeading);
headline3($sGroupHeading);
- foreach($aParentOfLines as $aAddressLine)
+ foreach($aHierarchyLines as $aAddressLine)
{
_one_row($aAddressLine);
}
}
- if (sizeof($aParentOfLines) >= 500) {
+ if (count($aHierarchyLines) >= 500) {
echo '
There are more child objects which are not shown.
';
}
}
@@ -241,7 +245,7 @@
echo 'var nominatim_map_init = ' . json_encode($aNominatimMapInit, JSON_PRETTY_PRINT) . ';';
$aPlace = array(
- 'outlinestring' => $aPointDetails['outlinestring'],
+ 'asgeojson' => $aPointDetails['asgeojson'],
'lon' => $aPointDetails['lon'],
'lat' => $aPointDetails['lat'],
);