-$sSQL = "select place_id, osm_type, osm_id, class, type, name, admin_level,";
-$sSQL .= " housenumber, street, isin, postcode, calculated_country_code as country_code,";
-$sSQL .= " importance, wikipedia,";
-$sSQL .= " to_char(indexed_date, 'YYYY-MM-DD HH24:MI') as indexed_date,";
-$sSQL .= " parent_place_id, rank_address, rank_search,";
-$sSQL .= " get_searchrank_label(rank_search) as rank_search_label,";
-$sSQL .= " get_name_by_language(name,$sLanguagePrefArraySQL) as localname, ";
-$sSQL .= " ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') as isarea, ";
-//$sSQL .= " ST_Area(geometry::geography) as area, ";
-$sSQL .= " ST_y(centroid) as lat, ST_x(centroid) as lon,";
-$sSQL .= " case when importance = 0 OR importance IS NULL then 0.75-(rank_search::float/40) else importance end as calculated_importance, ";
-$sSQL .= " ST_AsText(CASE WHEN ST_NPoints(geometry) > 5000 THEN ST_SimplifyPreserveTopology(geometry, 0.0001) ELSE geometry END) as outlinestring";
-$sSQL .= " from placex where place_id = $iPlaceID";
-
-$aPointDetails = chksql($oDB->getRow($sSQL), "Could not get details of place object.");
+$sSQL = 'SELECT place_id, osm_type, osm_id, class, type, name, admin_level,';
+$sSQL .= ' housenumber, postcode, country_code,';
+$sSQL .= ' importance, wikipedia,';
+$sSQL .= ' ROUND(EXTRACT(epoch FROM indexed_date)) AS indexed_epoch,';
+$sSQL .= ' parent_place_id, ';
+$sSQL .= ' rank_address, ';
+$sSQL .= ' rank_search, ';
+$sSQL .= " get_name_by_language(name,$sLanguagePrefArraySQL) AS localname, ";
+$sSQL .= " ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') AS isarea, ";
+$sSQL .= ' ST_y(centroid) AS lat, ';
+$sSQL .= ' ST_x(centroid) AS lon, ';
+$sSQL .= ' CASE ';
+$sSQL .= ' WHEN importance = 0 OR importance IS NULL ';
+$sSQL .= ' THEN 0.75-(rank_search::float/40) ';
+$sSQL .= ' ELSE importance ';
+$sSQL .= ' END as calculated_importance, ';
+if ($bIncludePolygonAsGeoJSON) {
+ $sSQL .= ' ST_AsGeoJSON(CASE ';
+ $sSQL .= ' WHEN ST_NPoints(geometry) > 5000 ';
+ $sSQL .= ' THEN ST_SimplifyPreserveTopology(geometry, 0.0001) ';
+ $sSQL .= ' ELSE geometry ';
+ $sSQL .= ' END) as asgeojson';
+} else {
+ $sSQL .= ' ST_AsGeoJSON(centroid) as asgeojson';
+}
+$sSQL .= ' FROM placex ';
+$sSQL .= " WHERE place_id = $iPlaceID";
+
+$aPointDetails = $oDB->getRow($sSQL, null, 'Could not get details of place object.');