File Coverage

lib/Geo/ISO19139/Util.pm
Criterion Covered Total %
statement 33 33 100.0
branch n/a
condition n/a
subroutine 11 11 100.0
pod n/a
total 44 44 100.0


line stmt bran cond sub pod time code
1             # Copyrights 2008 by Mark Overmeer.
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 1.05.
5 1     1   1934 use warnings;
  1         2  
  1         34  
6 1     1   34 use strict;
  1         2  
  1         39  
7              
8             package Geo::ISO19139::Util;
9 1     1   12 use vars '$VERSION';
  1         1  
  1         55  
10             $VERSION = '0.10';
11              
12 1     1   5 use base 'Exporter';
  1         1  
  1         179  
13              
14             our @r2005 = qw/NS_GCO_2005 NS_GMD_2005 NS_GMX_2005
15             NS_GSR_2005 NS_GSS_2005 NS_GTS_2005 NS_GML_2005/;
16              
17             our @EXPORT_OK = ( @r2005 );
18              
19             our %EXPORT_TAGS =
20             ( 2005 => \@r2005
21             );
22              
23              
24 1     1   5 use constant NS_GML_2005 => 'http://www.opengis.net/gml/3.2';
  1         2  
  1         76  
25 1     1   5 use constant NS_GCO_2005 => 'http://www.isotc211.org/2005/gco';
  1         1  
  1         47  
26 1     1   5 use constant NS_GMD_2005 => 'http://www.isotc211.org/2005/gmd';
  1         1  
  1         35  
27 1     1   7 use constant NS_GMX_2005 => 'http://www.isotc211.org/2005/gmx';
  1         1  
  1         85  
28 1     1   5 use constant NS_GSR_2005 => 'http://www.isotc211.org/2005/gsr';
  1         1  
  1         38  
29 1     1   5 use constant NS_GSS_2005 => 'http://www.isotc211.org/2005/gss';
  1         1  
  1         39  
30 1     1   4 use constant NS_GTS_2005 => 'http://www.isotc211.org/2005/gts';
  1         1  
  1         43  
31              
32             1;