SimplePie::get_latitude()
Get the latitude coordinates for the item
Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications
Uses <geo:lat> or <georss:point>
Method of the class: SimplePie{}
No Hooks.
Return
String|null
.
Usage
$SimplePie = new SimplePie(); $SimplePie->get_latitude();
Changelog
Since 1.0 | Introduced. |
SimplePie::get_latitude() SimplePie::get latitude code WP 6.6.2
public function get_latitude() { if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lat')) { return (float) $return[0]['data']; } elseif (($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match)) { return (float) $match[1]; } return null; }