Files
Phraseanet/lib/classes/metadata/description/H264/GPSImgDirectionRef.class.php
2012-04-26 02:09:59 +02:00

33 lines
739 B
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2012 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
class metadata_description_H264_GPSImgDirectionRef extends metadata_Abstract implements metadata_Interface
{
const SOURCE = '/rdf:RDF/rdf:Description/H264:GPSImgDirectionRef';
const NAME_SPACE = 'H264';
const TAGNAME = 'GPSImgDirectionRef';
const TYPE = self::TYPE_STRING;
public static function available_values()
{
return array(
'M' => 'Magnetic North'
, 'T' => 'True North'
);
}
}