Syntax Syntax
Parameters Parameters
- $atom_data
-
(Required)
- $baseoffset
-
(Required)
- $atomHierarchy
-
(Required)
- $ParseAllPossibleAtoms
-
(Required)
Return Return
(array|false)
Source Source
File: wp-includes/ID3/module.audio-video.quicktime.php
$GPS_this_GPRMC_raw['status'], $GPS_this_GPRMC_raw['latitude'], $GPS_this_GPRMC_raw['latitude_direction'], $GPS_this_GPRMC_raw['longitude'], $GPS_this_GPRMC_raw['longitude_direction'], $GPS_this_GPRMC_raw['knots'], $GPS_this_GPRMC_raw['angle'], $GPS_this_GPRMC_raw['datestamp'], $GPS_this_GPRMC_raw['variation'], $GPS_this_GPRMC_raw['variation_direction'], $dummy, $GPS_this_GPRMC_raw['checksum'], ) = $matches; $GPS_this_GPRMC['raw'] = $GPS_this_GPRMC_raw; $hour = substr($GPS_this_GPRMC['raw']['timestamp'], 0, 2); $minute = substr($GPS_this_GPRMC['raw']['timestamp'], 2, 2); $second = substr($GPS_this_GPRMC['raw']['timestamp'], 4, 2); $ms = substr($GPS_this_GPRMC['raw']['timestamp'], 6); // may contain decimal seconds $day = substr($GPS_this_GPRMC['raw']['datestamp'], 0, 2); $month = substr($GPS_this_GPRMC['raw']['datestamp'], 2, 2); $year = (int) substr($GPS_this_GPRMC['raw']['datestamp'], 4, 2); $year += (($year > 90) ? 1900 : 2000); // complete lack of foresight: datestamps are stored with 2-digit years, take best guess $GPS_this_GPRMC['timestamp'] = $year.'-'.$month.'-'.$day.' '.$hour.':'.$minute.':'.$second.$ms; $GPS_this_GPRMC['active'] = ($GPS_this_GPRMC['raw']['status'] == 'A'); // A=Active,V=Void