2013-09-09 17:09:28 +04:00
< ? php
2016-09-04 04:19:48 +03:00
@ define ( 'CONST_ConnectionBucket_PageType' , 'Details' );
require_once ( dirname ( dirname ( __FILE__ )) . '/settings/settings.php' );
require_once ( CONST_BasePath . '/lib/init-website.php' );
require_once ( CONST_BasePath . '/lib/log.php' );
require_once ( CONST_BasePath . '/lib/PlaceLookup.php' );
require_once ( CONST_BasePath . '/lib/output.php' );
ini_set ( 'memory_limit' , '200M' );
2016-09-16 03:27:36 +03:00
$oParams = new Nominatim\ParameterParser ();
2016-09-04 04:19:48 +03:00
$sOutputFormat = $oParams -> getSet ( 'format' , array ( 'html' , 'json' ), 'html' );
$aLangPrefOrder = $oParams -> getPreferredLanguages ();
2017-10-26 22:21:21 +03:00
$sLanguagePrefArraySQL = 'ARRAY[' . join ( ',' , array_map ( 'getDBQuoted' , $aLangPrefOrder )) . ']' ;
2016-09-04 04:19:48 +03:00
$sPlaceId = $oParams -> getString ( 'place_id' );
$sOsmType = $oParams -> getSet ( 'osmtype' , array ( 'N' , 'W' , 'R' ));
$iOsmId = $oParams -> getInt ( 'osmid' , - 1 );
$oDB =& getDB ();
2016-09-08 04:16:22 +03:00
if ( $sOsmType && $iOsmId > 0 ) {
2016-09-04 04:19:48 +03:00
$sPlaceId = chksql ( $oDB -> getOne ( " select place_id from placex where osm_type = ' " . $sOsmType . " ' and osm_id = " . $iOsmId . " order by type = 'postcode' asc " ));
// Be nice about our error messages for broken geometry
2016-09-08 04:16:22 +03:00
if ( ! $sPlaceId ) {
2017-10-26 22:21:21 +03:00
$sSQL = 'select osm_type, osm_id, errormessage, class, type,' ;
2016-10-14 01:01:16 +03:00
$sSQL .= " get_name_by_language(name, $sLanguagePrefArraySQL ) as localname, " ;
2017-10-26 22:21:21 +03:00
$sSQL .= ' ST_AsText(prevgeometry) as prevgeom, ST_AsText(newgeometry) as newgeom' ;
2016-10-14 01:01:16 +03:00
$sSQL .= " from import_polygon_error where osm_type = ' " . $sOsmType ;
2017-10-26 22:21:21 +03:00
$sSQL .= " ' and osm_id = " . $iOsmId . ' order by updated desc limit 1' ;
2016-10-14 01:01:16 +03:00
$aPointDetails = chksql ( $oDB -> getRow ( $sSQL ));
2016-09-04 04:19:48 +03:00
if ( $aPointDetails ) {
2016-09-08 04:16:22 +03:00
if ( preg_match ( '/\[(-?\d+\.\d+) (-?\d+\.\d+)\]/' , $aPointDetails [ 'errormessage' ], $aMatches )) {
2016-09-04 04:19:48 +03:00
$aPointDetails [ 'error_x' ] = $aMatches [ 1 ];
$aPointDetails [ 'error_y' ] = $aMatches [ 2 ];
}
include ( CONST_BasePath . '/lib/template/details-error-' . $sOutputFormat . '.php' );
exit ;
}
}
}
2017-10-26 22:21:21 +03:00
if ( ! $sPlaceId ) userError ( 'Please select a place id' );
2016-09-04 04:19:48 +03:00
$iPlaceID = ( int ) $sPlaceId ;
2016-09-08 04:16:22 +03:00
if ( CONST_Use_US_Tiger_Data ) {
2016-09-04 04:19:48 +03:00
$iParentPlaceID = chksql ( $oDB -> getOne ( 'select parent_place_id from location_property_tiger where place_id = ' . $iPlaceID ));
if ( $iParentPlaceID ) $iPlaceID = $iParentPlaceID ;
}
2016-09-08 04:16:22 +03:00
if ( CONST_Use_Aux_Location_data ) {
2016-09-04 04:19:48 +03:00
$iParentPlaceID = chksql ( $oDB -> getOne ( 'select parent_place_id from location_property_aux where place_id = ' . $iPlaceID ));
if ( $iParentPlaceID ) $iPlaceID = $iParentPlaceID ;
}
2016-09-16 03:27:36 +03:00
$oPlaceLookup = new Nominatim\PlaceLookup ( $oDB );
2016-09-04 04:19:48 +03:00
$oPlaceLookup -> setLanguagePreference ( $aLangPrefOrder );
$oPlaceLookup -> setIncludeAddressDetails ( true );
$aPlaceAddress = array_reverse ( $oPlaceLookup -> getAddressDetails ( $iPlaceID ));
2018-03-22 14:36:24 +03:00
if ( empty ( $aPlaceAddress )) userError ( 'Unknown place id.' );
2016-09-04 04:19:48 +03:00
$aBreadcrums = array ();
2016-09-08 04:16:22 +03:00
foreach ( $aPlaceAddress as $i => $aPlace ) {
2016-09-04 04:19:48 +03:00
if ( ! $aPlace [ 'place_id' ]) continue ;
2016-09-10 22:10:52 +03:00
$aBreadcrums [] = array (
'placeId' => $aPlace [ 'place_id' ],
'osmType' => $aPlace [ 'osm_type' ],
'osmId' => $aPlace [ 'osm_id' ],
'localName' => $aPlace [ 'localname' ]
);
2016-09-04 04:19:48 +03:00
2016-09-08 04:16:22 +03:00
if ( $sOutputFormat == 'html' ) {
2016-09-04 04:19:48 +03:00
$sPlaceUrl = 'hierarchy.php?place_id=' . $aPlace [ 'place_id' ];
2017-10-26 22:21:21 +03:00
if ( $i ) echo ' > ' ;
2016-09-04 04:19:48 +03:00
echo '<a href="' . $sPlaceUrl . '">' . $aPlace [ 'localname' ] . '</a> (' . osmLink ( $aPlace ) . ')' ;
}
}
2016-09-08 04:16:22 +03:00
if ( $sOutputFormat == 'json' ) {
2017-10-26 22:21:21 +03:00
header ( 'content-type: application/json; charset=UTF-8' );
2016-09-04 04:19:48 +03:00
$aDetails = array ();
$aDetails [ 'breadcrumbs' ] = $aBreadcrums ;
javascript_renderData ( $aDetails );
exit ;
}
$aRelatedPlaceIDs = chksql ( $oDB -> getCol ( $sSQL = " select place_id from placex where linked_place_id = $iPlaceID or place_id = $iPlaceID " ));
2017-10-26 22:21:21 +03:00
$sSQL = 'select obj.place_id, osm_type, osm_id, class, type, housenumber, admin_level,' ;
2016-10-14 01:01:16 +03:00
$sSQL .= " rank_address, ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') as isarea, st_area(geometry) as area, " ;
2016-09-04 04:19:48 +03:00
$sSQL .= " get_name_by_language(name, $sLanguagePrefArraySQL ) as localname, length(name::text) as namelength " ;
2017-10-26 22:21:21 +03:00
$sSQL .= ' from (select placex.place_id, osm_type, osm_id, class, type, housenumber, admin_level, rank_address, rank_search, geometry, name from placex ' ;
$sSQL .= ' where parent_place_id in (' . join ( ',' , $aRelatedPlaceIDs ) . ') and name is not null order by rank_address asc,rank_search asc limit 500) as obj' ;
$sSQL .= ' order by rank_address asc,rank_search asc,localname,class, type,housenumber' ;
2016-09-04 04:19:48 +03:00
$aParentOfLines = chksql ( $oDB -> getAll ( $sSQL ));
2018-03-22 14:36:24 +03:00
if ( ! empty ( $aParentOfLines )) {
2016-09-04 04:19:48 +03:00
echo '<h2>Parent Of:</h2>' ;
$aClassType = getClassTypesWithImportance ();
$aGroupedAddressLines = array ();
2016-09-08 04:16:22 +03:00
foreach ( $aParentOfLines as $aAddressLine ) {
2016-09-04 04:19:48 +03:00
if ( isset ( $aClassType [ $aAddressLine [ 'class' ] . ':' . $aAddressLine [ 'type' ] . ':' . $aAddressLine [ 'admin_level' ]][ 'label' ])
2016-09-11 06:22:51 +03:00
&& $aClassType [ $aAddressLine [ 'class' ] . ':' . $aAddressLine [ 'type' ] . ':' . $aAddressLine [ 'admin_level' ]][ 'label' ]
2016-09-08 04:16:22 +03:00
) {
2016-09-04 04:19:48 +03:00
$aAddressLine [ 'label' ] = $aClassType [ $aAddressLine [ 'class' ] . ':' . $aAddressLine [ 'type' ] . ':' . $aAddressLine [ 'admin_level' ]][ 'label' ];
2016-09-08 04:16:22 +03:00
} elseif ( isset ( $aClassType [ $aAddressLine [ 'class' ] . ':' . $aAddressLine [ 'type' ]][ 'label' ])
2016-09-11 06:22:51 +03:00
&& $aClassType [ $aAddressLine [ 'class' ] . ':' . $aAddressLine [ 'type' ]][ 'label' ]
2016-09-08 04:16:22 +03:00
) {
2016-09-04 04:19:48 +03:00
$aAddressLine [ 'label' ] = $aClassType [ $aAddressLine [ 'class' ] . ':' . $aAddressLine [ 'type' ]][ 'label' ];
2016-09-08 04:16:22 +03:00
} else $aAddressLine [ 'label' ] = ucwords ( $aAddressLine [ 'type' ]);
2016-09-04 04:19:48 +03:00
if ( ! isset ( $aGroupedAddressLines [ $aAddressLine [ 'label' ]])) $aGroupedAddressLines [ $aAddressLine [ 'label' ]] = array ();
$aGroupedAddressLines [ $aAddressLine [ 'label' ]][] = $aAddressLine ;
}
2016-09-08 04:16:22 +03:00
foreach ( $aGroupedAddressLines as $sGroupHeading => $aParentOfLines ) {
2016-09-04 04:19:48 +03:00
echo " <h3> $sGroupHeading </h3> " ;
2016-09-08 04:16:22 +03:00
foreach ( $aParentOfLines as $aAddressLine ) {
2016-09-04 04:19:48 +03:00
$aAddressLine [ 'localname' ] = $aAddressLine [ 'localname' ] ? $aAddressLine [ 'localname' ] : $aAddressLine [ 'housenumber' ];
$sOSMType = formatOSMType ( $aAddressLine [ 'osm_type' ], false );
echo '<div class="line">' ;
echo '<span class="name">' . ( trim ( $aAddressLine [ 'localname' ]) ? $aAddressLine [ 'localname' ] : '<span class="noname">No Name</span>' ) . '</span>' ;
echo ' (' ;
echo '<span class="area">' . ( $aAddressLine [ 'isarea' ] == 't' ? 'Polygon' : 'Point' ) . '</span>' ;
if ( $sOSMType ) echo ', <span class="osm"><span class="label"></span>' . $sOSMType . ' ' . osmLink ( $aAddressLine ) . '</span>' ;
echo ', <a href="hierarchy.php?place_id=' . $aAddressLine [ 'place_id' ] . '">GOTO</a>' ;
echo ', ' . $aAddressLine [ 'area' ];
echo ')' ;
echo '</div>' ;
}
}
2018-03-22 14:36:24 +03:00
if ( count ( $aParentOfLines ) >= 500 ) {
2016-09-04 04:19:48 +03:00
echo '<p>There are more child objects which are not shown.</p>' ;
}
echo '</div>' ;
}