for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* php-gedcom.
*
* php-gedcom is a library for parsing, manipulating, importing and exporting
* GEDCOM 5.5 files in PHP 5.3+.
* @author Kristopher Wilson <[email protected]>
* @copyright Copyright (c) 2010-2013, Kristopher Wilson
* @license MIT
* @link http://github.com/mrkrstphr/php-gedcom
*/
namespace Gedcom\Parser\Plac;
class Map extends \Gedcom\Parser\Component
{
public static function parse(\Gedcom\Parser $parser)
$record = $parser->getCurrentLineRecord();
$depth = (int) $record[0];
$map = new \Gedcom\Record\Plac\Map();
$parser->forward();
while (!$parser->eof()) {
$currentDepth = (int) $record[0];
$recordType = strtoupper(trim($record[1]));
if ($currentDepth <= $depth) {
$parser->back();
break;
}
switch ($recordType) {
case 'LATI':
$map->setLati(trim($record[2]));
case 'LONG':
$map->setLong(trim($record[2]));
default:
$parser->logUnhandledRecord(self::class.' @ '.__LINE__);
return $map;