geo_combine 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.github/workflows/ruby.yml +53 -0
 - data/.gitignore +2 -0
 - data/.rubocop.yml +20 -0
 - data/.rubocop_todo.yml +165 -0
 - data/Gemfile +3 -1
 - data/README.md +15 -1
 - data/Rakefile +4 -2
 - data/bin/geocombine +1 -0
 - data/geo_combine.gemspec +5 -0
 - data/lib/geo_combine/bounding_box.rb +7 -1
 - data/lib/geo_combine/ckan_metadata.rb +10 -8
 - data/lib/geo_combine/cli.rb +3 -1
 - data/lib/geo_combine/esri_open_data.rb +2 -0
 - data/lib/geo_combine/exceptions.rb +3 -0
 - data/lib/geo_combine/fgdc.rb +2 -2
 - data/lib/geo_combine/formats.rb +2 -0
 - data/lib/geo_combine/formatting.rb +3 -1
 - data/lib/geo_combine/geo_blacklight_harvester.rb +20 -13
 - data/lib/geo_combine/geoblacklight.rb +20 -6
 - data/lib/geo_combine/geometry_types.rb +2 -0
 - data/lib/geo_combine/iso19139.rb +2 -1
 - data/lib/geo_combine/ogp.rb +13 -11
 - data/lib/geo_combine/railtie.rb +2 -0
 - data/lib/geo_combine/subjects.rb +2 -0
 - data/lib/geo_combine/version.rb +3 -1
 - data/lib/geo_combine.rb +4 -3
 - data/lib/tasks/geo_combine.rake +47 -26
 - data/lib/xslt/fgdc2html.xsl +38 -9
 - data/spec/features/fgdc2html_spec.rb +53 -1
 - data/spec/features/iso2html_spec.rb +10 -1
 - data/spec/fixtures/docs/princeton_fgdc.xml +374 -0
 - data/spec/fixtures/docs/repos.json +3224 -0
 - data/spec/fixtures/docs/simple_xml.xml +10 -0
 - data/spec/fixtures/docs/simple_xslt.xsl +11 -0
 - data/spec/fixtures/docs/stanford_iso.xml +652 -0
 - data/spec/fixtures/docs/tufts_fgdc.xml +977 -0
 - data/spec/fixtures/indexing/basic_geoblacklight.json +27 -0
 - data/spec/fixtures/indexing/geoblacklight.json +33 -0
 - data/spec/fixtures/indexing/layers.json +16119 -0
 - data/spec/fixtures/indexing/test.txt +1 -0
 - data/spec/fixtures/json_docs.rb +2 -0
 - data/spec/fixtures/xml_docs.rb +9 -1659
 - data/spec/helpers.rb +7 -7
 - data/spec/lib/geo_combine/bounding_box_spec.rb +18 -0
 - data/spec/lib/geo_combine/ckan_metadata_spec.rb +34 -11
 - data/spec/lib/geo_combine/esri_open_data_spec.rb +23 -2
 - data/spec/lib/geo_combine/fgdc_spec.rb +41 -10
 - data/spec/lib/geo_combine/formatting_spec.rb +13 -5
 - data/spec/lib/geo_combine/geo_blacklight_harvester_spec.rb +32 -28
 - data/spec/lib/geo_combine/geoblacklight_spec.rb +41 -11
 - data/spec/lib/geo_combine/iso19139_spec.rb +26 -14
 - data/spec/lib/geo_combine/ogp_spec.rb +28 -8
 - data/spec/lib/geo_combine_spec.rb +7 -4
 - data/spec/lib/tasks/geo_combine_spec.rb +45 -0
 - data/spec/spec_helper.rb +19 -84
 - data/spec/support/fixtures.rb +9 -0
 - metadata +102 -7
 - data/.coveralls.yml +0 -1
 - data/.travis.yml +0 -8
 
    
        data/spec/fixtures/xml_docs.rb
    CHANGED
    
    | 
         @@ -1,1681 +1,31 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            module XmlDocs
         
     | 
| 
       3 
4 
     | 
    
         
             
              ##
         
     | 
| 
       4 
5 
     | 
    
         
             
              # Example XSLT from https://developer.mozilla.org/en-US/docs/XSLT_in_Gecko/Basic_Example
         
     | 
| 
       5 
6 
     | 
    
         
             
              def simple_xslt
         
     | 
| 
       6 
     | 
    
         
            -
                 
     | 
| 
       7 
     | 
    
         
            -
                  <?xml version="1.0"?>
         
     | 
| 
       8 
     | 
    
         
            -
                    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
                    <xsl:output method="text"/>
         
     | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
                    <xsl:template match="/">
         
     | 
| 
       13 
     | 
    
         
            -
                      Article - <xsl:value-of select="/Article/Title"/>
         
     | 
| 
       14 
     | 
    
         
            -
                      Authors: <xsl:apply-templates select="/Article/Authors/Author"/>
         
     | 
| 
       15 
     | 
    
         
            -
                    </xsl:template>
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
                    <xsl:template match="Author">
         
     | 
| 
       18 
     | 
    
         
            -
                      - <xsl:value-of select="." />
         
     | 
| 
       19 
     | 
    
         
            -
                    </xsl:template>
         
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
                    </xsl:stylesheet>
         
     | 
| 
       22 
     | 
    
         
            -
                xml
         
     | 
| 
      
 7 
     | 
    
         
            +
                File.read(File.join(File.dirname(__FILE__), './docs/simple_xslt.xsl'))
         
     | 
| 
       23 
8 
     | 
    
         
             
              end
         
     | 
| 
       24 
9 
     | 
    
         | 
| 
       25 
10 
     | 
    
         
             
              ##
         
     | 
| 
       26 
11 
     | 
    
         
             
              # Example XML from https://developer.mozilla.org/en-US/docs/XSLT_in_Gecko/Basic_Example
         
     | 
| 
       27 
12 
     | 
    
         
             
              def simple_xml
         
     | 
| 
       28 
     | 
    
         
            -
                 
     | 
| 
       29 
     | 
    
         
            -
                  <?xml version="1.0"?>
         
     | 
| 
       30 
     | 
    
         
            -
                  <?xml-stylesheet type="text/xsl" href="example.xsl"?>
         
     | 
| 
       31 
     | 
    
         
            -
                  <Article>
         
     | 
| 
       32 
     | 
    
         
            -
                    <Title>My Article</Title>
         
     | 
| 
       33 
     | 
    
         
            -
                    <Authors>
         
     | 
| 
       34 
     | 
    
         
            -
                      <Author>Mr. Foo</Author>
         
     | 
| 
       35 
     | 
    
         
            -
                      <Author>Mr. Bar</Author>
         
     | 
| 
       36 
     | 
    
         
            -
                    </Authors>
         
     | 
| 
       37 
     | 
    
         
            -
                    <Body>This is my article text.</Body>
         
     | 
| 
       38 
     | 
    
         
            -
                  </Article>
         
     | 
| 
       39 
     | 
    
         
            -
                xml
         
     | 
| 
      
 13 
     | 
    
         
            +
                File.read(File.join(File.dirname(__FILE__), './docs/simple_xml.xml'))
         
     | 
| 
       40 
14 
     | 
    
         
             
              end
         
     | 
| 
       41 
15 
     | 
    
         | 
| 
       42 
16 
     | 
    
         
             
              ##
         
     | 
| 
       43 
17 
     | 
    
         
             
              # Stanford ISO19139 example record from https://github.com/OpenGeoMetadata/edu.stanford.purl/blob/08085d766014ea91e5defb6d172e5633bfd9b1ce/bb/338/jh/0716/iso19139.xml
         
     | 
| 
       44 
18 
     | 
    
         
             
              def stanford_iso
         
     | 
| 
       45 
     | 
    
         
            -
                 
     | 
| 
       46 
     | 
    
         
            -
                  <MD_Metadata xmlns="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         
     | 
| 
       47 
     | 
    
         
            -
                    <fileIdentifier>
         
     | 
| 
       48 
     | 
    
         
            -
                      <gco:CharacterString>edu.stanford.purl:bb338jh0716</gco:CharacterString>
         
     | 
| 
       49 
     | 
    
         
            -
                    </fileIdentifier>
         
     | 
| 
       50 
     | 
    
         
            -
                    <language>
         
     | 
| 
       51 
     | 
    
         
            -
                      <LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
         
     | 
| 
       52 
     | 
    
         
            -
                    </language>
         
     | 
| 
       53 
     | 
    
         
            -
                    <characterSet>
         
     | 
| 
       54 
     | 
    
         
            -
                      <MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</MD_CharacterSetCode>
         
     | 
| 
       55 
     | 
    
         
            -
                    </characterSet>
         
     | 
| 
       56 
     | 
    
         
            -
                    <parentIdentifier>
         
     | 
| 
       57 
     | 
    
         
            -
                      <gco:CharacterString>http://purl.stanford.edu/zt526qk7324.mods</gco:CharacterString>
         
     | 
| 
       58 
     | 
    
         
            -
                    </parentIdentifier>
         
     | 
| 
       59 
     | 
    
         
            -
                    <hierarchyLevel>
         
     | 
| 
       60 
     | 
    
         
            -
                      <MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</MD_ScopeCode>
         
     | 
| 
       61 
     | 
    
         
            -
                    </hierarchyLevel>
         
     | 
| 
       62 
     | 
    
         
            -
                    <hierarchyLevelName>
         
     | 
| 
       63 
     | 
    
         
            -
                      <gco:CharacterString>dataset</gco:CharacterString>
         
     | 
| 
       64 
     | 
    
         
            -
                    </hierarchyLevelName>
         
     | 
| 
       65 
     | 
    
         
            -
                    <contact>
         
     | 
| 
       66 
     | 
    
         
            -
                      <CI_ResponsibleParty>
         
     | 
| 
       67 
     | 
    
         
            -
                        <organisationName>
         
     | 
| 
       68 
     | 
    
         
            -
                          <gco:CharacterString>Stanford Geospatial Center</gco:CharacterString>
         
     | 
| 
       69 
     | 
    
         
            -
                        </organisationName>
         
     | 
| 
       70 
     | 
    
         
            -
                        <positionName>
         
     | 
| 
       71 
     | 
    
         
            -
                          <gco:CharacterString>Metadata Analyst</gco:CharacterString>
         
     | 
| 
       72 
     | 
    
         
            -
                        </positionName>
         
     | 
| 
       73 
     | 
    
         
            -
                        <contactInfo>
         
     | 
| 
       74 
     | 
    
         
            -
                          <CI_Contact>
         
     | 
| 
       75 
     | 
    
         
            -
                            <phone>
         
     | 
| 
       76 
     | 
    
         
            -
                              <CI_Telephone>
         
     | 
| 
       77 
     | 
    
         
            -
                                <voice>
         
     | 
| 
       78 
     | 
    
         
            -
                                  <gco:CharacterString>650-723-2746</gco:CharacterString>
         
     | 
| 
       79 
     | 
    
         
            -
                                </voice>
         
     | 
| 
       80 
     | 
    
         
            -
                              </CI_Telephone>
         
     | 
| 
       81 
     | 
    
         
            -
                            </phone>
         
     | 
| 
       82 
     | 
    
         
            -
                            <address>
         
     | 
| 
       83 
     | 
    
         
            -
                              <CI_Address>
         
     | 
| 
       84 
     | 
    
         
            -
                                <deliveryPoint>
         
     | 
| 
       85 
     | 
    
         
            -
                                  <gco:CharacterString>Branner Earth Sciences Library</gco:CharacterString>
         
     | 
| 
       86 
     | 
    
         
            -
                                </deliveryPoint>
         
     | 
| 
       87 
     | 
    
         
            -
                                <deliveryPoint>
         
     | 
| 
       88 
     | 
    
         
            -
                                  <gco:CharacterString>Mitchell Bldg. 2nd floor</gco:CharacterString>
         
     | 
| 
       89 
     | 
    
         
            -
                                </deliveryPoint>
         
     | 
| 
       90 
     | 
    
         
            -
                                <deliveryPoint>
         
     | 
| 
       91 
     | 
    
         
            -
                                  <gco:CharacterString>397 Panama Mall</gco:CharacterString>
         
     | 
| 
       92 
     | 
    
         
            -
                                </deliveryPoint>
         
     | 
| 
       93 
     | 
    
         
            -
                                <city>
         
     | 
| 
       94 
     | 
    
         
            -
                                  <gco:CharacterString>Stanford</gco:CharacterString>
         
     | 
| 
       95 
     | 
    
         
            -
                                </city>
         
     | 
| 
       96 
     | 
    
         
            -
                                <administrativeArea>
         
     | 
| 
       97 
     | 
    
         
            -
                                  <gco:CharacterString>California</gco:CharacterString>
         
     | 
| 
       98 
     | 
    
         
            -
                                </administrativeArea>
         
     | 
| 
       99 
     | 
    
         
            -
                                <postalCode>
         
     | 
| 
       100 
     | 
    
         
            -
                                  <gco:CharacterString>94305</gco:CharacterString>
         
     | 
| 
       101 
     | 
    
         
            -
                                </postalCode>
         
     | 
| 
       102 
     | 
    
         
            -
                                <country>
         
     | 
| 
       103 
     | 
    
         
            -
                                  <gco:CharacterString>US</gco:CharacterString>
         
     | 
| 
       104 
     | 
    
         
            -
                                </country>
         
     | 
| 
       105 
     | 
    
         
            -
                                <electronicMailAddress>
         
     | 
| 
       106 
     | 
    
         
            -
                                  <gco:CharacterString>brannerlibrary@stanford.edu</gco:CharacterString>
         
     | 
| 
       107 
     | 
    
         
            -
                                </electronicMailAddress>
         
     | 
| 
       108 
     | 
    
         
            -
                              </CI_Address>
         
     | 
| 
       109 
     | 
    
         
            -
                            </address>
         
     | 
| 
       110 
     | 
    
         
            -
                          </CI_Contact>
         
     | 
| 
       111 
     | 
    
         
            -
                        </contactInfo>
         
     | 
| 
       112 
     | 
    
         
            -
                        <role>
         
     | 
| 
       113 
     | 
    
         
            -
                          <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</CI_RoleCode>
         
     | 
| 
       114 
     | 
    
         
            -
                        </role>
         
     | 
| 
       115 
     | 
    
         
            -
                      </CI_ResponsibleParty>
         
     | 
| 
       116 
     | 
    
         
            -
                    </contact>
         
     | 
| 
       117 
     | 
    
         
            -
                    <dateStamp>
         
     | 
| 
       118 
     | 
    
         
            -
                      <gco:Date>2014-10-08</gco:Date>
         
     | 
| 
       119 
     | 
    
         
            -
                    </dateStamp>
         
     | 
| 
       120 
     | 
    
         
            -
                    <metadataStandardName>
         
     | 
| 
       121 
     | 
    
         
            -
                      <gco:CharacterString>ISO 19139 Geographic Information - Metadata - Implementation Specification</gco:CharacterString>
         
     | 
| 
       122 
     | 
    
         
            -
                    </metadataStandardName>
         
     | 
| 
       123 
     | 
    
         
            -
                    <metadataStandardVersion>
         
     | 
| 
       124 
     | 
    
         
            -
                      <gco:CharacterString>2007</gco:CharacterString>
         
     | 
| 
       125 
     | 
    
         
            -
                    </metadataStandardVersion>
         
     | 
| 
       126 
     | 
    
         
            -
                    <dataSetURI>
         
     | 
| 
       127 
     | 
    
         
            -
                      <gco:CharacterString>http://purl.stanford.edu/bb338jh0716</gco:CharacterString>
         
     | 
| 
       128 
     | 
    
         
            -
                    </dataSetURI>
         
     | 
| 
       129 
     | 
    
         
            -
                    <spatialRepresentationInfo>
         
     | 
| 
       130 
     | 
    
         
            -
                      <MD_VectorSpatialRepresentation>
         
     | 
| 
       131 
     | 
    
         
            -
                        <topologyLevel>
         
     | 
| 
       132 
     | 
    
         
            -
                          <MD_TopologyLevelCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly" codeSpace="ISOTC211/19115">geometryOnly</MD_TopologyLevelCode>
         
     | 
| 
       133 
     | 
    
         
            -
                        </topologyLevel>
         
     | 
| 
       134 
     | 
    
         
            -
                        <geometricObjects>
         
     | 
| 
       135 
     | 
    
         
            -
                          <MD_GeometricObjects>
         
     | 
| 
       136 
     | 
    
         
            -
                            <geometricObjectType>
         
     | 
| 
       137 
     | 
    
         
            -
                              <MD_GeometricObjectTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="composite" codeSpace="ISOTC211/19115">composite</MD_GeometricObjectTypeCode>
         
     | 
| 
       138 
     | 
    
         
            -
                            </geometricObjectType>
         
     | 
| 
       139 
     | 
    
         
            -
                            <geometricObjectCount>
         
     | 
| 
       140 
     | 
    
         
            -
                              <gco:Integer>11</gco:Integer>
         
     | 
| 
       141 
     | 
    
         
            -
                            </geometricObjectCount>
         
     | 
| 
       142 
     | 
    
         
            -
                          </MD_GeometricObjects>
         
     | 
| 
       143 
     | 
    
         
            -
                        </geometricObjects>
         
     | 
| 
       144 
     | 
    
         
            -
                      </MD_VectorSpatialRepresentation>
         
     | 
| 
       145 
     | 
    
         
            -
                    </spatialRepresentationInfo>
         
     | 
| 
       146 
     | 
    
         
            -
                    <referenceSystemInfo>
         
     | 
| 
       147 
     | 
    
         
            -
                      <MD_ReferenceSystem>
         
     | 
| 
       148 
     | 
    
         
            -
                        <referenceSystemIdentifier>
         
     | 
| 
       149 
     | 
    
         
            -
                          <RS_Identifier>
         
     | 
| 
       150 
     | 
    
         
            -
                            <code>
         
     | 
| 
       151 
     | 
    
         
            -
                              <gco:CharacterString>26910</gco:CharacterString>
         
     | 
| 
       152 
     | 
    
         
            -
                            </code>
         
     | 
| 
       153 
     | 
    
         
            -
                            <codeSpace>
         
     | 
| 
       154 
     | 
    
         
            -
                              <gco:CharacterString>EPSG</gco:CharacterString>
         
     | 
| 
       155 
     | 
    
         
            -
                            </codeSpace>
         
     | 
| 
       156 
     | 
    
         
            -
                            <version>
         
     | 
| 
       157 
     | 
    
         
            -
                              <gco:CharacterString>8.2.6</gco:CharacterString>
         
     | 
| 
       158 
     | 
    
         
            -
                            </version>
         
     | 
| 
       159 
     | 
    
         
            -
                          </RS_Identifier>
         
     | 
| 
       160 
     | 
    
         
            -
                        </referenceSystemIdentifier>
         
     | 
| 
       161 
     | 
    
         
            -
                      </MD_ReferenceSystem>
         
     | 
| 
       162 
     | 
    
         
            -
                    </referenceSystemInfo>
         
     | 
| 
       163 
     | 
    
         
            -
                    <identificationInfo>
         
     | 
| 
       164 
     | 
    
         
            -
                      <MD_DataIdentification>
         
     | 
| 
       165 
     | 
    
         
            -
                        <citation>
         
     | 
| 
       166 
     | 
    
         
            -
                          <CI_Citation>
         
     | 
| 
       167 
     | 
    
         
            -
                            <title>
         
     | 
| 
       168 
     | 
    
         
            -
                              <gco:CharacterString>Hydrologic Sub-Area Boundaries: Russian River Watershed, California, 1999</gco:CharacterString>
         
     | 
| 
       169 
     | 
    
         
            -
                            </title>
         
     | 
| 
       170 
     | 
    
         
            -
                            <date>
         
     | 
| 
       171 
     | 
    
         
            -
                              <CI_Date>
         
     | 
| 
       172 
     | 
    
         
            -
                                <date>
         
     | 
| 
       173 
     | 
    
         
            -
                                  <gco:Date>2002-09-01</gco:Date>
         
     | 
| 
       174 
     | 
    
         
            -
                                </date>
         
     | 
| 
       175 
     | 
    
         
            -
                                <dateType>
         
     | 
| 
       176 
     | 
    
         
            -
                                  <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
         
     | 
| 
       177 
     | 
    
         
            -
                                </dateType>
         
     | 
| 
       178 
     | 
    
         
            -
                              </CI_Date>
         
     | 
| 
       179 
     | 
    
         
            -
                            </date>
         
     | 
| 
       180 
     | 
    
         
            -
                            <identifier>
         
     | 
| 
       181 
     | 
    
         
            -
                              <MD_Identifier>
         
     | 
| 
       182 
     | 
    
         
            -
                                <code>
         
     | 
| 
       183 
     | 
    
         
            -
                                  <gco:CharacterString>http://purl.stanford.edu/bb338jh0716</gco:CharacterString>
         
     | 
| 
       184 
     | 
    
         
            -
                                </code>
         
     | 
| 
       185 
     | 
    
         
            -
                              </MD_Identifier>
         
     | 
| 
       186 
     | 
    
         
            -
                            </identifier>
         
     | 
| 
       187 
     | 
    
         
            -
                            <citedResponsibleParty>
         
     | 
| 
       188 
     | 
    
         
            -
                              <CI_ResponsibleParty>
         
     | 
| 
       189 
     | 
    
         
            -
                                <organisationName>
         
     | 
| 
       190 
     | 
    
         
            -
                                  <gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
         
     | 
| 
       191 
     | 
    
         
            -
                                </organisationName>
         
     | 
| 
       192 
     | 
    
         
            -
                                <role>
         
     | 
| 
       193 
     | 
    
         
            -
                                  <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
         
     | 
| 
       194 
     | 
    
         
            -
                                </role>
         
     | 
| 
       195 
     | 
    
         
            -
                              </CI_ResponsibleParty>
         
     | 
| 
       196 
     | 
    
         
            -
                            </citedResponsibleParty>
         
     | 
| 
       197 
     | 
    
         
            -
                            <citedResponsibleParty>
         
     | 
| 
       198 
     | 
    
         
            -
                              <CI_ResponsibleParty>
         
     | 
| 
       199 
     | 
    
         
            -
                                <organisationName>
         
     | 
| 
       200 
     | 
    
         
            -
                                  <gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
         
     | 
| 
       201 
     | 
    
         
            -
                                </organisationName>
         
     | 
| 
       202 
     | 
    
         
            -
                                <contactInfo>
         
     | 
| 
       203 
     | 
    
         
            -
                                  <CI_Contact>
         
     | 
| 
       204 
     | 
    
         
            -
                                    <address>
         
     | 
| 
       205 
     | 
    
         
            -
                                      <CI_Address>
         
     | 
| 
       206 
     | 
    
         
            -
                                        <city>
         
     | 
| 
       207 
     | 
    
         
            -
                                          <gco:CharacterString>Windsor</gco:CharacterString>
         
     | 
| 
       208 
     | 
    
         
            -
                                        </city>
         
     | 
| 
       209 
     | 
    
         
            -
                                        <administrativeArea>
         
     | 
| 
       210 
     | 
    
         
            -
                                          <gco:CharacterString>California</gco:CharacterString>
         
     | 
| 
       211 
     | 
    
         
            -
                                        </administrativeArea>
         
     | 
| 
       212 
     | 
    
         
            -
                                        <country>
         
     | 
| 
       213 
     | 
    
         
            -
                                          <gco:CharacterString>US</gco:CharacterString>
         
     | 
| 
       214 
     | 
    
         
            -
                                        </country>
         
     | 
| 
       215 
     | 
    
         
            -
                                        <electronicMailAddress>
         
     | 
| 
       216 
     | 
    
         
            -
                                          <gco:CharacterString>info@circuitriderstudios.com</gco:CharacterString>
         
     | 
| 
       217 
     | 
    
         
            -
                                        </electronicMailAddress>
         
     | 
| 
       218 
     | 
    
         
            -
                                      </CI_Address>
         
     | 
| 
       219 
     | 
    
         
            -
                                    </address>
         
     | 
| 
       220 
     | 
    
         
            -
                                  </CI_Contact>
         
     | 
| 
       221 
     | 
    
         
            -
                                </contactInfo>
         
     | 
| 
       222 
     | 
    
         
            -
                                <role>
         
     | 
| 
       223 
     | 
    
         
            -
                                  <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</CI_RoleCode>
         
     | 
| 
       224 
     | 
    
         
            -
                                </role>
         
     | 
| 
       225 
     | 
    
         
            -
                              </CI_ResponsibleParty>
         
     | 
| 
       226 
     | 
    
         
            -
                            </citedResponsibleParty>
         
     | 
| 
       227 
     | 
    
         
            -
                            <presentationForm>
         
     | 
| 
       228 
     | 
    
         
            -
                              <CI_PresentationFormCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_PresentationFormCode" codeListValue="mapDigital" codeSpace="ISOTC211/19115">mapDigital</CI_PresentationFormCode>
         
     | 
| 
       229 
     | 
    
         
            -
                            </presentationForm>
         
     | 
| 
       230 
     | 
    
         
            -
                            <collectiveTitle>
         
     | 
| 
       231 
     | 
    
         
            -
                              <gco:CharacterString>Russian River Watershed GIS</gco:CharacterString>
         
     | 
| 
       232 
     | 
    
         
            -
                            </collectiveTitle>
         
     | 
| 
       233 
     | 
    
         
            -
                          </CI_Citation>
         
     | 
| 
       234 
     | 
    
         
            -
                        </citation>
         
     | 
| 
       235 
     | 
    
         
            -
                        <abstract>
         
     | 
| 
       236 
     | 
    
         
            -
                          <gco:CharacterString>This polygon dataset represents the Hydrologic Sub-Area boundaries for the Russian River basin, as defined by the Calwater 2.2a watershed boundaries. The original CALWATER22 layer (Calwater 2.2a watershed boundaries) was developed as a coverage named calw22a and is administered by the Interagency California Watershed Mapping Committee (ICWMC). </gco:CharacterString>
         
     | 
| 
       237 
     | 
    
         
            -
                        </abstract>
         
     | 
| 
       238 
     | 
    
         
            -
                        <purpose>
         
     | 
| 
       239 
     | 
    
         
            -
                          <gco:CharacterString>This shapefile can be used to map and analyze data at the Hydrologic Sub-Area scale.</gco:CharacterString>
         
     | 
| 
       240 
     | 
    
         
            -
                        </purpose>
         
     | 
| 
       241 
     | 
    
         
            -
                        <credit>
         
     | 
| 
       242 
     | 
    
         
            -
                          <gco:CharacterString>Circuit Rider Productions and National Oceanic and Atmospheric Administration (2002). Hydrologic Sub-Area Boundaries: Russian River Watershed, California, 1999. Circuit Rider Productions.</gco:CharacterString>
         
     | 
| 
       243 
     | 
    
         
            -
                        </credit>
         
     | 
| 
       244 
     | 
    
         
            -
                        <status>
         
     | 
| 
       245 
     | 
    
         
            -
                          <MD_ProgressCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed" codeSpace="ISOTC211/19115">completed</MD_ProgressCode>
         
     | 
| 
       246 
     | 
    
         
            -
                        </status>
         
     | 
| 
       247 
     | 
    
         
            -
                        <pointOfContact>
         
     | 
| 
       248 
     | 
    
         
            -
                          <CI_ResponsibleParty>
         
     | 
| 
       249 
     | 
    
         
            -
                            <organisationName>
         
     | 
| 
       250 
     | 
    
         
            -
                              <gco:CharacterString>Circuit Rider Productions, Inc. </gco:CharacterString>
         
     | 
| 
       251 
     | 
    
         
            -
                            </organisationName>
         
     | 
| 
       252 
     | 
    
         
            -
                            <positionName>
         
     | 
| 
       253 
     | 
    
         
            -
                              <gco:CharacterString>GIS Coordinator </gco:CharacterString>
         
     | 
| 
       254 
     | 
    
         
            -
                            </positionName>
         
     | 
| 
       255 
     | 
    
         
            -
                            <contactInfo>
         
     | 
| 
       256 
     | 
    
         
            -
                              <CI_Contact>
         
     | 
| 
       257 
     | 
    
         
            -
                                <phone>
         
     | 
| 
       258 
     | 
    
         
            -
                                  <CI_Telephone>
         
     | 
| 
       259 
     | 
    
         
            -
                                    <voice>
         
     | 
| 
       260 
     | 
    
         
            -
                                      <gco:CharacterString>707.838.6641 </gco:CharacterString>
         
     | 
| 
       261 
     | 
    
         
            -
                                    </voice>
         
     | 
| 
       262 
     | 
    
         
            -
                                  </CI_Telephone>
         
     | 
| 
       263 
     | 
    
         
            -
                                </phone>
         
     | 
| 
       264 
     | 
    
         
            -
                                <address>
         
     | 
| 
       265 
     | 
    
         
            -
                                  <CI_Address>
         
     | 
| 
       266 
     | 
    
         
            -
                                    <deliveryPoint>
         
     | 
| 
       267 
     | 
    
         
            -
                                      <gco:CharacterString>9619 Old Redwood Highway </gco:CharacterString>
         
     | 
| 
       268 
     | 
    
         
            -
                                    </deliveryPoint>
         
     | 
| 
       269 
     | 
    
         
            -
                                    <city>
         
     | 
| 
       270 
     | 
    
         
            -
                                      <gco:CharacterString>Windsor</gco:CharacterString>
         
     | 
| 
       271 
     | 
    
         
            -
                                    </city>
         
     | 
| 
       272 
     | 
    
         
            -
                                    <administrativeArea>
         
     | 
| 
       273 
     | 
    
         
            -
                                      <gco:CharacterString>California</gco:CharacterString>
         
     | 
| 
       274 
     | 
    
         
            -
                                    </administrativeArea>
         
     | 
| 
       275 
     | 
    
         
            -
                                    <postalCode>
         
     | 
| 
       276 
     | 
    
         
            -
                                      <gco:CharacterString>95492 </gco:CharacterString>
         
     | 
| 
       277 
     | 
    
         
            -
                                    </postalCode>
         
     | 
| 
       278 
     | 
    
         
            -
                                    <country>
         
     | 
| 
       279 
     | 
    
         
            -
                                      <gco:CharacterString>US</gco:CharacterString>
         
     | 
| 
       280 
     | 
    
         
            -
                                    </country>
         
     | 
| 
       281 
     | 
    
         
            -
                                  </CI_Address>
         
     | 
| 
       282 
     | 
    
         
            -
                                </address>
         
     | 
| 
       283 
     | 
    
         
            -
                              </CI_Contact>
         
     | 
| 
       284 
     | 
    
         
            -
                            </contactInfo>
         
     | 
| 
       285 
     | 
    
         
            -
                            <role>
         
     | 
| 
       286 
     | 
    
         
            -
                              <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</CI_RoleCode>
         
     | 
| 
       287 
     | 
    
         
            -
                            </role>
         
     | 
| 
       288 
     | 
    
         
            -
                          </CI_ResponsibleParty>
         
     | 
| 
       289 
     | 
    
         
            -
                        </pointOfContact>
         
     | 
| 
       290 
     | 
    
         
            -
                        <resourceMaintenance>
         
     | 
| 
       291 
     | 
    
         
            -
                          <MD_MaintenanceInformation>
         
     | 
| 
       292 
     | 
    
         
            -
                            <maintenanceAndUpdateFrequency>
         
     | 
| 
       293 
     | 
    
         
            -
                              <MD_MaintenanceFrequencyCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="notPlanned" codeSpace="ISOTC211/19115">notPlanned</MD_MaintenanceFrequencyCode>
         
     | 
| 
       294 
     | 
    
         
            -
                            </maintenanceAndUpdateFrequency>
         
     | 
| 
       295 
     | 
    
         
            -
                          </MD_MaintenanceInformation>
         
     | 
| 
       296 
     | 
    
         
            -
                        </resourceMaintenance>
         
     | 
| 
       297 
     | 
    
         
            -
                        <descriptiveKeywords>
         
     | 
| 
       298 
     | 
    
         
            -
                          <MD_Keywords>
         
     | 
| 
       299 
     | 
    
         
            -
                            <keyword>
         
     | 
| 
       300 
     | 
    
         
            -
                              <gco:CharacterString>Sonoma County (Calif.)</gco:CharacterString>
         
     | 
| 
       301 
     | 
    
         
            -
                            </keyword>
         
     | 
| 
       302 
     | 
    
         
            -
                            <keyword>
         
     | 
| 
       303 
     | 
    
         
            -
                              <gco:CharacterString>Mendocino County (Calif.)</gco:CharacterString>
         
     | 
| 
       304 
     | 
    
         
            -
                            </keyword>
         
     | 
| 
       305 
     | 
    
         
            -
                            <keyword>
         
     | 
| 
       306 
     | 
    
         
            -
                              <gco:CharacterString>Russian River Watershed (Calif.)</gco:CharacterString>
         
     | 
| 
       307 
     | 
    
         
            -
                            </keyword>
         
     | 
| 
       308 
     | 
    
         
            -
                            <type>
         
     | 
| 
       309 
     | 
    
         
            -
                              <MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</MD_KeywordTypeCode>
         
     | 
| 
       310 
     | 
    
         
            -
                            </type>
         
     | 
| 
       311 
     | 
    
         
            -
                            <thesaurusName>
         
     | 
| 
       312 
     | 
    
         
            -
                              <CI_Citation>
         
     | 
| 
       313 
     | 
    
         
            -
                                <title>
         
     | 
| 
       314 
     | 
    
         
            -
                                  <gco:CharacterString>geonames</gco:CharacterString>
         
     | 
| 
       315 
     | 
    
         
            -
                                </title>
         
     | 
| 
       316 
     | 
    
         
            -
                                <date>
         
     | 
| 
       317 
     | 
    
         
            -
                                  <CI_Date>
         
     | 
| 
       318 
     | 
    
         
            -
                                    <date>
         
     | 
| 
       319 
     | 
    
         
            -
                                      <gco:Date>2012-11-01</gco:Date>
         
     | 
| 
       320 
     | 
    
         
            -
                                    </date>
         
     | 
| 
       321 
     | 
    
         
            -
                                    <dateType>
         
     | 
| 
       322 
     | 
    
         
            -
                                      <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision" codeSpace="ISOTC211/19115">revision</CI_DateTypeCode>
         
     | 
| 
       323 
     | 
    
         
            -
                                    </dateType>
         
     | 
| 
       324 
     | 
    
         
            -
                                  </CI_Date>
         
     | 
| 
       325 
     | 
    
         
            -
                                </date>
         
     | 
| 
       326 
     | 
    
         
            -
                                <edition>
         
     | 
| 
       327 
     | 
    
         
            -
                                  <gco:CharacterString>3.1</gco:CharacterString>
         
     | 
| 
       328 
     | 
    
         
            -
                                </edition>
         
     | 
| 
       329 
     | 
    
         
            -
                                <identifier>
         
     | 
| 
       330 
     | 
    
         
            -
                                  <MD_Identifier>
         
     | 
| 
       331 
     | 
    
         
            -
                                    <code>
         
     | 
| 
       332 
     | 
    
         
            -
                                      <gco:CharacterString>http://www.geonames.org/ontology#</gco:CharacterString>
         
     | 
| 
       333 
     | 
    
         
            -
                                    </code>
         
     | 
| 
       334 
     | 
    
         
            -
                                  </MD_Identifier>
         
     | 
| 
       335 
     | 
    
         
            -
                                </identifier>
         
     | 
| 
       336 
     | 
    
         
            -
                              </CI_Citation>
         
     | 
| 
       337 
     | 
    
         
            -
                            </thesaurusName>
         
     | 
| 
       338 
     | 
    
         
            -
                          </MD_Keywords>
         
     | 
| 
       339 
     | 
    
         
            -
                        </descriptiveKeywords>
         
     | 
| 
       340 
     | 
    
         
            -
                        <descriptiveKeywords>
         
     | 
| 
       341 
     | 
    
         
            -
                          <MD_Keywords>
         
     | 
| 
       342 
     | 
    
         
            -
                            <keyword>
         
     | 
| 
       343 
     | 
    
         
            -
                              <gco:CharacterString>1999</gco:CharacterString>
         
     | 
| 
       344 
     | 
    
         
            -
                            </keyword>
         
     | 
| 
       345 
     | 
    
         
            -
                            <type>
         
     | 
| 
       346 
     | 
    
         
            -
                              <MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="temporal" codeSpace="ISOTC211/19115">temporal</MD_KeywordTypeCode>
         
     | 
| 
       347 
     | 
    
         
            -
                            </type>
         
     | 
| 
       348 
     | 
    
         
            -
                          </MD_Keywords>
         
     | 
| 
       349 
     | 
    
         
            -
                        </descriptiveKeywords>
         
     | 
| 
       350 
     | 
    
         
            -
                        <descriptiveKeywords>
         
     | 
| 
       351 
     | 
    
         
            -
                          <MD_Keywords>
         
     | 
| 
       352 
     | 
    
         
            -
                            <keyword>
         
     | 
| 
       353 
     | 
    
         
            -
                              <gco:CharacterString>Hydrology</gco:CharacterString>
         
     | 
| 
       354 
     | 
    
         
            -
                            </keyword>
         
     | 
| 
       355 
     | 
    
         
            -
                            <keyword>
         
     | 
| 
       356 
     | 
    
         
            -
                              <gco:CharacterString>Watersheds</gco:CharacterString>
         
     | 
| 
       357 
     | 
    
         
            -
                            </keyword>
         
     | 
| 
       358 
     | 
    
         
            -
                            <type>
         
     | 
| 
       359 
     | 
    
         
            -
                              <MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</MD_KeywordTypeCode>
         
     | 
| 
       360 
     | 
    
         
            -
                            </type>
         
     | 
| 
       361 
     | 
    
         
            -
                            <thesaurusName>
         
     | 
| 
       362 
     | 
    
         
            -
                              <CI_Citation>
         
     | 
| 
       363 
     | 
    
         
            -
                                <title>
         
     | 
| 
       364 
     | 
    
         
            -
                                  <gco:CharacterString>lcsh</gco:CharacterString>
         
     | 
| 
       365 
     | 
    
         
            -
                                </title>
         
     | 
| 
       366 
     | 
    
         
            -
                                <date>
         
     | 
| 
       367 
     | 
    
         
            -
                                  <CI_Date>
         
     | 
| 
       368 
     | 
    
         
            -
                                    <date>
         
     | 
| 
       369 
     | 
    
         
            -
                                      <gco:Date>2011-04-26</gco:Date>
         
     | 
| 
       370 
     | 
    
         
            -
                                    </date>
         
     | 
| 
       371 
     | 
    
         
            -
                                    <dateType>
         
     | 
| 
       372 
     | 
    
         
            -
                                      <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision" codeSpace="ISOTC211/19115">revision</CI_DateTypeCode>
         
     | 
| 
       373 
     | 
    
         
            -
                                    </dateType>
         
     | 
| 
       374 
     | 
    
         
            -
                                  </CI_Date>
         
     | 
| 
       375 
     | 
    
         
            -
                                </date>
         
     | 
| 
       376 
     | 
    
         
            -
                                <identifier>
         
     | 
| 
       377 
     | 
    
         
            -
                                  <MD_Identifier>
         
     | 
| 
       378 
     | 
    
         
            -
                                    <code>
         
     | 
| 
       379 
     | 
    
         
            -
                                      <gco:CharacterString>http://id.loc.gov/authorities/subjects.html</gco:CharacterString>
         
     | 
| 
       380 
     | 
    
         
            -
                                    </code>
         
     | 
| 
       381 
     | 
    
         
            -
                                  </MD_Identifier>
         
     | 
| 
       382 
     | 
    
         
            -
                                </identifier>
         
     | 
| 
       383 
     | 
    
         
            -
                              </CI_Citation>
         
     | 
| 
       384 
     | 
    
         
            -
                            </thesaurusName>
         
     | 
| 
       385 
     | 
    
         
            -
                          </MD_Keywords>
         
     | 
| 
       386 
     | 
    
         
            -
                        </descriptiveKeywords>
         
     | 
| 
       387 
     | 
    
         
            -
                        <descriptiveKeywords>
         
     | 
| 
       388 
     | 
    
         
            -
                          <MD_Keywords>
         
     | 
| 
       389 
     | 
    
         
            -
                            <keyword>
         
     | 
| 
       390 
     | 
    
         
            -
                              <gco:CharacterString>Downloadable Data</gco:CharacterString>
         
     | 
| 
       391 
     | 
    
         
            -
                            </keyword>
         
     | 
| 
       392 
     | 
    
         
            -
                            <thesaurusName uuidref="723f6998-058e-11dc-8314-0800200c9a66"/>
         
     | 
| 
       393 
     | 
    
         
            -
                          </MD_Keywords>
         
     | 
| 
       394 
     | 
    
         
            -
                        </descriptiveKeywords>
         
     | 
| 
       395 
     | 
    
         
            -
                        <resourceConstraints>
         
     | 
| 
       396 
     | 
    
         
            -
                          <MD_LegalConstraints>
         
     | 
| 
       397 
     | 
    
         
            -
                            <useLimitation>
         
     | 
| 
       398 
     | 
    
         
            -
                              <gco:CharacterString>No restrictions on access or use.</gco:CharacterString>
         
     | 
| 
       399 
     | 
    
         
            -
                            </useLimitation>
         
     | 
| 
       400 
     | 
    
         
            -
                          </MD_LegalConstraints>
         
     | 
| 
       401 
     | 
    
         
            -
                        </resourceConstraints>
         
     | 
| 
       402 
     | 
    
         
            -
                        <aggregationInfo>
         
     | 
| 
       403 
     | 
    
         
            -
                          <MD_AggregateInformation>
         
     | 
| 
       404 
     | 
    
         
            -
                            <aggregateDataSetName>
         
     | 
| 
       405 
     | 
    
         
            -
                              <CI_Citation>
         
     | 
| 
       406 
     | 
    
         
            -
                                <title>
         
     | 
| 
       407 
     | 
    
         
            -
                                  <gco:CharacterString>Russian River Watershed GIS</gco:CharacterString>
         
     | 
| 
       408 
     | 
    
         
            -
                                </title>
         
     | 
| 
       409 
     | 
    
         
            -
                                <date>
         
     | 
| 
       410 
     | 
    
         
            -
                                  <CI_Date>
         
     | 
| 
       411 
     | 
    
         
            -
                                    <date>
         
     | 
| 
       412 
     | 
    
         
            -
                                      <gco:Date>2002-10-24</gco:Date>
         
     | 
| 
       413 
     | 
    
         
            -
                                    </date>
         
     | 
| 
       414 
     | 
    
         
            -
                                    <dateType>
         
     | 
| 
       415 
     | 
    
         
            -
                                      <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
         
     | 
| 
       416 
     | 
    
         
            -
                                    </dateType>
         
     | 
| 
       417 
     | 
    
         
            -
                                  </CI_Date>
         
     | 
| 
       418 
     | 
    
         
            -
                                </date>
         
     | 
| 
       419 
     | 
    
         
            -
                                <identifier>
         
     | 
| 
       420 
     | 
    
         
            -
                                  <MD_Identifier>
         
     | 
| 
       421 
     | 
    
         
            -
                                    <code>
         
     | 
| 
       422 
     | 
    
         
            -
                                      <gco:CharacterString>http://purl.stanford.edu/zt526qk7324</gco:CharacterString>
         
     | 
| 
       423 
     | 
    
         
            -
                                    </code>
         
     | 
| 
       424 
     | 
    
         
            -
                                  </MD_Identifier>
         
     | 
| 
       425 
     | 
    
         
            -
                                </identifier>
         
     | 
| 
       426 
     | 
    
         
            -
                                <citedResponsibleParty>
         
     | 
| 
       427 
     | 
    
         
            -
                                  <CI_ResponsibleParty>
         
     | 
| 
       428 
     | 
    
         
            -
                                    <organisationName>
         
     | 
| 
       429 
     | 
    
         
            -
                                      <gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
         
     | 
| 
       430 
     | 
    
         
            -
                                    </organisationName>
         
     | 
| 
       431 
     | 
    
         
            -
                                    <role>
         
     | 
| 
       432 
     | 
    
         
            -
                                      <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
         
     | 
| 
       433 
     | 
    
         
            -
                                    </role>
         
     | 
| 
       434 
     | 
    
         
            -
                                  </CI_ResponsibleParty>
         
     | 
| 
       435 
     | 
    
         
            -
                                </citedResponsibleParty>
         
     | 
| 
       436 
     | 
    
         
            -
                                <citedResponsibleParty>
         
     | 
| 
       437 
     | 
    
         
            -
                                  <CI_ResponsibleParty>
         
     | 
| 
       438 
     | 
    
         
            -
                                    <organisationName>
         
     | 
| 
       439 
     | 
    
         
            -
                                      <gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
         
     | 
| 
       440 
     | 
    
         
            -
                                    </organisationName>
         
     | 
| 
       441 
     | 
    
         
            -
                                    <contactInfo>
         
     | 
| 
       442 
     | 
    
         
            -
                                      <CI_Contact>
         
     | 
| 
       443 
     | 
    
         
            -
                                        <address>
         
     | 
| 
       444 
     | 
    
         
            -
                                          <CI_Address>
         
     | 
| 
       445 
     | 
    
         
            -
                                            <city>
         
     | 
| 
       446 
     | 
    
         
            -
                                              <gco:CharacterString>Windsor</gco:CharacterString>
         
     | 
| 
       447 
     | 
    
         
            -
                                            </city>
         
     | 
| 
       448 
     | 
    
         
            -
                                            <administrativeArea>
         
     | 
| 
       449 
     | 
    
         
            -
                                              <gco:CharacterString>California</gco:CharacterString>
         
     | 
| 
       450 
     | 
    
         
            -
                                            </administrativeArea>
         
     | 
| 
       451 
     | 
    
         
            -
                                            <country>
         
     | 
| 
       452 
     | 
    
         
            -
                                              <gco:CharacterString>US</gco:CharacterString>
         
     | 
| 
       453 
     | 
    
         
            -
                                            </country>
         
     | 
| 
       454 
     | 
    
         
            -
                                            <electronicMailAddress>
         
     | 
| 
       455 
     | 
    
         
            -
                                              <gco:CharacterString>info@circuitriderstudios.com</gco:CharacterString>
         
     | 
| 
       456 
     | 
    
         
            -
                                            </electronicMailAddress>
         
     | 
| 
       457 
     | 
    
         
            -
                                          </CI_Address>
         
     | 
| 
       458 
     | 
    
         
            -
                                        </address>
         
     | 
| 
       459 
     | 
    
         
            -
                                      </CI_Contact>
         
     | 
| 
       460 
     | 
    
         
            -
                                    </contactInfo>
         
     | 
| 
       461 
     | 
    
         
            -
                                    <role>
         
     | 
| 
       462 
     | 
    
         
            -
                                      <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</CI_RoleCode>
         
     | 
| 
       463 
     | 
    
         
            -
                                    </role>
         
     | 
| 
       464 
     | 
    
         
            -
                                  </CI_ResponsibleParty>
         
     | 
| 
       465 
     | 
    
         
            -
                                </citedResponsibleParty>
         
     | 
| 
       466 
     | 
    
         
            -
                                <citedResponsibleParty>
         
     | 
| 
       467 
     | 
    
         
            -
                                  <CI_ResponsibleParty>
         
     | 
| 
       468 
     | 
    
         
            -
                                    <organisationName>
         
     | 
| 
       469 
     | 
    
         
            -
                                      <gco:CharacterString>United States. National Oceanic and Atmospheric Administration</gco:CharacterString>
         
     | 
| 
       470 
     | 
    
         
            -
                                    </organisationName>
         
     | 
| 
       471 
     | 
    
         
            -
                                    <role>
         
     | 
| 
       472 
     | 
    
         
            -
                                      <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
         
     | 
| 
       473 
     | 
    
         
            -
                                    </role>
         
     | 
| 
       474 
     | 
    
         
            -
                                  </CI_ResponsibleParty>
         
     | 
| 
       475 
     | 
    
         
            -
                                </citedResponsibleParty>
         
     | 
| 
       476 
     | 
    
         
            -
                              </CI_Citation>
         
     | 
| 
       477 
     | 
    
         
            -
                            </aggregateDataSetName>
         
     | 
| 
       478 
     | 
    
         
            -
                            <associationType>
         
     | 
| 
       479 
     | 
    
         
            -
                              <DS_AssociationTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#DS_AssociationTypeCode" codeListValue="largerWorkCitation" codeSpace="ISOTC211/19115">largerWorkCitation</DS_AssociationTypeCode>
         
     | 
| 
       480 
     | 
    
         
            -
                            </associationType>
         
     | 
| 
       481 
     | 
    
         
            -
                            <initiativeType>
         
     | 
| 
       482 
     | 
    
         
            -
                              <DS_InitiativeTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#DS_InitiativeTypeCode" codeListValue="collection" codeSpace="ISOTC211/19115">collection</DS_InitiativeTypeCode>
         
     | 
| 
       483 
     | 
    
         
            -
                            </initiativeType>
         
     | 
| 
       484 
     | 
    
         
            -
                          </MD_AggregateInformation>
         
     | 
| 
       485 
     | 
    
         
            -
                        </aggregationInfo>
         
     | 
| 
       486 
     | 
    
         
            -
                        <spatialRepresentationType>
         
     | 
| 
       487 
     | 
    
         
            -
                          <MD_SpatialRepresentationTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector" codeSpace="ISOTC211/19115">vector</MD_SpatialRepresentationTypeCode>
         
     | 
| 
       488 
     | 
    
         
            -
                        </spatialRepresentationType>
         
     | 
| 
       489 
     | 
    
         
            -
                        <language>
         
     | 
| 
       490 
     | 
    
         
            -
                          <LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
         
     | 
| 
       491 
     | 
    
         
            -
                        </language>
         
     | 
| 
       492 
     | 
    
         
            -
                        <characterSet>
         
     | 
| 
       493 
     | 
    
         
            -
                          <MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</MD_CharacterSetCode>
         
     | 
| 
       494 
     | 
    
         
            -
                        </characterSet>
         
     | 
| 
       495 
     | 
    
         
            -
                        <topicCategory>
         
     | 
| 
       496 
     | 
    
         
            -
                          <MD_TopicCategoryCode>boundaries</MD_TopicCategoryCode>
         
     | 
| 
       497 
     | 
    
         
            -
                        </topicCategory>
         
     | 
| 
       498 
     | 
    
         
            -
                        <topicCategory>
         
     | 
| 
       499 
     | 
    
         
            -
                          <MD_TopicCategoryCode>inlandWaters</MD_TopicCategoryCode>
         
     | 
| 
       500 
     | 
    
         
            -
                        </topicCategory>
         
     | 
| 
       501 
     | 
    
         
            -
                        <environmentDescription>
         
     | 
| 
       502 
     | 
    
         
            -
                          <gco:CharacterString>Microsoft Windows 7 Version 6.1 (Build 7601) Service Pack 1; Esri ArcGIS 10.2.2.3552</gco:CharacterString>
         
     | 
| 
       503 
     | 
    
         
            -
                        </environmentDescription>
         
     | 
| 
       504 
     | 
    
         
            -
                        <extent>
         
     | 
| 
       505 
     | 
    
         
            -
                          <EX_Extent>
         
     | 
| 
       506 
     | 
    
         
            -
                            <description>
         
     | 
| 
       507 
     | 
    
         
            -
                              <gco:CharacterString>ground condition</gco:CharacterString>
         
     | 
| 
       508 
     | 
    
         
            -
                            </description>
         
     | 
| 
       509 
     | 
    
         
            -
                            <temporalElement>
         
     | 
| 
       510 
     | 
    
         
            -
                              <EX_TemporalExtent>
         
     | 
| 
       511 
     | 
    
         
            -
                                <extent>
         
     | 
| 
       512 
     | 
    
         
            -
                                  <gml:TimePeriod gml:id="idp82864">
         
     | 
| 
       513 
     | 
    
         
            -
                                    <gml:beginPosition>1999-01-01T00:00:00</gml:beginPosition>
         
     | 
| 
       514 
     | 
    
         
            -
                                    <gml:endPosition>1999-12-31T00:00:00</gml:endPosition>
         
     | 
| 
       515 
     | 
    
         
            -
                                  </gml:TimePeriod>
         
     | 
| 
       516 
     | 
    
         
            -
                                </extent>
         
     | 
| 
       517 
     | 
    
         
            -
                              </EX_TemporalExtent>
         
     | 
| 
       518 
     | 
    
         
            -
                            </temporalElement>
         
     | 
| 
       519 
     | 
    
         
            -
                          </EX_Extent>
         
     | 
| 
       520 
     | 
    
         
            -
                        </extent>
         
     | 
| 
       521 
     | 
    
         
            -
                        <extent>
         
     | 
| 
       522 
     | 
    
         
            -
                          <EX_Extent>
         
     | 
| 
       523 
     | 
    
         
            -
                            <geographicElement>
         
     | 
| 
       524 
     | 
    
         
            -
                              <EX_GeographicBoundingBox>
         
     | 
| 
       525 
     | 
    
         
            -
                                <extentTypeCode>
         
     | 
| 
       526 
     | 
    
         
            -
                                  <gco:Boolean>true</gco:Boolean>
         
     | 
| 
       527 
     | 
    
         
            -
                                </extentTypeCode>
         
     | 
| 
       528 
     | 
    
         
            -
                                <westBoundLongitude>
         
     | 
| 
       529 
     | 
    
         
            -
                                  <gco:Decimal>-123.387866</gco:Decimal>
         
     | 
| 
       530 
     | 
    
         
            -
                                </westBoundLongitude>
         
     | 
| 
       531 
     | 
    
         
            -
                                <eastBoundLongitude>
         
     | 
| 
       532 
     | 
    
         
            -
                                  <gco:Decimal>-122.522658</gco:Decimal>
         
     | 
| 
       533 
     | 
    
         
            -
                                </eastBoundLongitude>
         
     | 
| 
       534 
     | 
    
         
            -
                                <southBoundLatitude>
         
     | 
| 
       535 
     | 
    
         
            -
                                  <gco:Decimal>38.298024</gco:Decimal>
         
     | 
| 
       536 
     | 
    
         
            -
                                </southBoundLatitude>
         
     | 
| 
       537 
     | 
    
         
            -
                                <northBoundLatitude>
         
     | 
| 
       538 
     | 
    
         
            -
                                  <gco:Decimal>39.399217</gco:Decimal>
         
     | 
| 
       539 
     | 
    
         
            -
                                </northBoundLatitude>
         
     | 
| 
       540 
     | 
    
         
            -
                              </EX_GeographicBoundingBox>
         
     | 
| 
       541 
     | 
    
         
            -
                            </geographicElement>
         
     | 
| 
       542 
     | 
    
         
            -
                          </EX_Extent>
         
     | 
| 
       543 
     | 
    
         
            -
                        </extent>
         
     | 
| 
       544 
     | 
    
         
            -
                      </MD_DataIdentification>
         
     | 
| 
       545 
     | 
    
         
            -
                    </identificationInfo>
         
     | 
| 
       546 
     | 
    
         
            -
                    <contentInfo>
         
     | 
| 
       547 
     | 
    
         
            -
                      <MD_FeatureCatalogueDescription>
         
     | 
| 
       548 
     | 
    
         
            -
                        <complianceCode>
         
     | 
| 
       549 
     | 
    
         
            -
                          <gco:Boolean>false</gco:Boolean>
         
     | 
| 
       550 
     | 
    
         
            -
                        </complianceCode>
         
     | 
| 
       551 
     | 
    
         
            -
                        <language>
         
     | 
| 
       552 
     | 
    
         
            -
                          <LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
         
     | 
| 
       553 
     | 
    
         
            -
                        </language>
         
     | 
| 
       554 
     | 
    
         
            -
                        <includedWithDataset>
         
     | 
| 
       555 
     | 
    
         
            -
                          <gco:Boolean>true</gco:Boolean>
         
     | 
| 
       556 
     | 
    
         
            -
                        </includedWithDataset>
         
     | 
| 
       557 
     | 
    
         
            -
                        <featureCatalogueCitation>
         
     | 
| 
       558 
     | 
    
         
            -
                          <CI_Citation>
         
     | 
| 
       559 
     | 
    
         
            -
                            <title>
         
     | 
| 
       560 
     | 
    
         
            -
                              <gco:CharacterString>Feature Catalog for Hydrologic Sub-Area Boundaries: Russian River Watershed, California, 1999</gco:CharacterString>
         
     | 
| 
       561 
     | 
    
         
            -
                            </title>
         
     | 
| 
       562 
     | 
    
         
            -
                            <date>
         
     | 
| 
       563 
     | 
    
         
            -
                              <CI_Date>
         
     | 
| 
       564 
     | 
    
         
            -
                                <date>
         
     | 
| 
       565 
     | 
    
         
            -
                                  <gco:Date>2002-09-01</gco:Date>
         
     | 
| 
       566 
     | 
    
         
            -
                                </date>
         
     | 
| 
       567 
     | 
    
         
            -
                                <dateType>
         
     | 
| 
       568 
     | 
    
         
            -
                                  <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
         
     | 
| 
       569 
     | 
    
         
            -
                                </dateType>
         
     | 
| 
       570 
     | 
    
         
            -
                              </CI_Date>
         
     | 
| 
       571 
     | 
    
         
            -
                            </date>
         
     | 
| 
       572 
     | 
    
         
            -
                            <identifier>
         
     | 
| 
       573 
     | 
    
         
            -
                              <MD_Identifier>
         
     | 
| 
       574 
     | 
    
         
            -
                                <code>
         
     | 
| 
       575 
     | 
    
         
            -
                                  <gco:CharacterString>476add9f-ea84-472c-a032-e6e8fd85337f</gco:CharacterString>
         
     | 
| 
       576 
     | 
    
         
            -
                                </code>
         
     | 
| 
       577 
     | 
    
         
            -
                              </MD_Identifier>
         
     | 
| 
       578 
     | 
    
         
            -
                            </identifier>
         
     | 
| 
       579 
     | 
    
         
            -
                            <citedResponsibleParty>
         
     | 
| 
       580 
     | 
    
         
            -
                              <CI_ResponsibleParty>
         
     | 
| 
       581 
     | 
    
         
            -
                                <organisationName>
         
     | 
| 
       582 
     | 
    
         
            -
                                  <gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
         
     | 
| 
       583 
     | 
    
         
            -
                                </organisationName>
         
     | 
| 
       584 
     | 
    
         
            -
                                <role>
         
     | 
| 
       585 
     | 
    
         
            -
                                  <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
         
     | 
| 
       586 
     | 
    
         
            -
                                </role>
         
     | 
| 
       587 
     | 
    
         
            -
                              </CI_ResponsibleParty>
         
     | 
| 
       588 
     | 
    
         
            -
                            </citedResponsibleParty>
         
     | 
| 
       589 
     | 
    
         
            -
                          </CI_Citation>
         
     | 
| 
       590 
     | 
    
         
            -
                        </featureCatalogueCitation>
         
     | 
| 
       591 
     | 
    
         
            -
                      </MD_FeatureCatalogueDescription>
         
     | 
| 
       592 
     | 
    
         
            -
                    </contentInfo>
         
     | 
| 
       593 
     | 
    
         
            -
                    <distributionInfo>
         
     | 
| 
       594 
     | 
    
         
            -
                      <MD_Distribution>
         
     | 
| 
       595 
     | 
    
         
            -
                        <distributionFormat>
         
     | 
| 
       596 
     | 
    
         
            -
                          <MD_Format>
         
     | 
| 
       597 
     | 
    
         
            -
                            <name>
         
     | 
| 
       598 
     | 
    
         
            -
                              <gco:CharacterString>Shapefile</gco:CharacterString>
         
     | 
| 
       599 
     | 
    
         
            -
                            </name>
         
     | 
| 
       600 
     | 
    
         
            -
                            <version gco:nilReason="missing"/>
         
     | 
| 
       601 
     | 
    
         
            -
                          </MD_Format>
         
     | 
| 
       602 
     | 
    
         
            -
                        </distributionFormat>
         
     | 
| 
       603 
     | 
    
         
            -
                        <distributor>
         
     | 
| 
       604 
     | 
    
         
            -
                          <MD_Distributor>
         
     | 
| 
       605 
     | 
    
         
            -
                            <distributorContact>
         
     | 
| 
       606 
     | 
    
         
            -
                              <CI_ResponsibleParty>
         
     | 
| 
       607 
     | 
    
         
            -
                                <organisationName>
         
     | 
| 
       608 
     | 
    
         
            -
                                  <gco:CharacterString>Stanford Geospatial Center</gco:CharacterString>
         
     | 
| 
       609 
     | 
    
         
            -
                                </organisationName>
         
     | 
| 
       610 
     | 
    
         
            -
                                <contactInfo>
         
     | 
| 
       611 
     | 
    
         
            -
                                  <CI_Contact>
         
     | 
| 
       612 
     | 
    
         
            -
                                    <phone>
         
     | 
| 
       613 
     | 
    
         
            -
                                      <CI_Telephone>
         
     | 
| 
       614 
     | 
    
         
            -
                                        <voice>
         
     | 
| 
       615 
     | 
    
         
            -
                                          <gco:CharacterString>650-723-2746</gco:CharacterString>
         
     | 
| 
       616 
     | 
    
         
            -
                                        </voice>
         
     | 
| 
       617 
     | 
    
         
            -
                                      </CI_Telephone>
         
     | 
| 
       618 
     | 
    
         
            -
                                    </phone>
         
     | 
| 
       619 
     | 
    
         
            -
                                    <address>
         
     | 
| 
       620 
     | 
    
         
            -
                                      <CI_Address>
         
     | 
| 
       621 
     | 
    
         
            -
                                        <deliveryPoint>
         
     | 
| 
       622 
     | 
    
         
            -
                                          <gco:CharacterString>Mitchell Bldg. 2nd floor</gco:CharacterString>
         
     | 
| 
       623 
     | 
    
         
            -
                                        </deliveryPoint>
         
     | 
| 
       624 
     | 
    
         
            -
                                        <deliveryPoint>
         
     | 
| 
       625 
     | 
    
         
            -
                                          <gco:CharacterString>397 Panama Mall</gco:CharacterString>
         
     | 
| 
       626 
     | 
    
         
            -
                                        </deliveryPoint>
         
     | 
| 
       627 
     | 
    
         
            -
                                        <city>
         
     | 
| 
       628 
     | 
    
         
            -
                                          <gco:CharacterString>Stanford</gco:CharacterString>
         
     | 
| 
       629 
     | 
    
         
            -
                                        </city>
         
     | 
| 
       630 
     | 
    
         
            -
                                        <administrativeArea>
         
     | 
| 
       631 
     | 
    
         
            -
                                          <gco:CharacterString>California</gco:CharacterString>
         
     | 
| 
       632 
     | 
    
         
            -
                                        </administrativeArea>
         
     | 
| 
       633 
     | 
    
         
            -
                                        <postalCode>
         
     | 
| 
       634 
     | 
    
         
            -
                                          <gco:CharacterString>94305</gco:CharacterString>
         
     | 
| 
       635 
     | 
    
         
            -
                                        </postalCode>
         
     | 
| 
       636 
     | 
    
         
            -
                                        <country>
         
     | 
| 
       637 
     | 
    
         
            -
                                          <gco:CharacterString>US</gco:CharacterString>
         
     | 
| 
       638 
     | 
    
         
            -
                                        </country>
         
     | 
| 
       639 
     | 
    
         
            -
                                        <electronicMailAddress>
         
     | 
| 
       640 
     | 
    
         
            -
                                          <gco:CharacterString>brannerlibrary@stanford.edu</gco:CharacterString>
         
     | 
| 
       641 
     | 
    
         
            -
                                        </electronicMailAddress>
         
     | 
| 
       642 
     | 
    
         
            -
                                      </CI_Address>
         
     | 
| 
       643 
     | 
    
         
            -
                                    </address>
         
     | 
| 
       644 
     | 
    
         
            -
                                  </CI_Contact>
         
     | 
| 
       645 
     | 
    
         
            -
                                </contactInfo>
         
     | 
| 
       646 
     | 
    
         
            -
                                <role>
         
     | 
| 
       647 
     | 
    
         
            -
                                  <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</CI_RoleCode>
         
     | 
| 
       648 
     | 
    
         
            -
                                </role>
         
     | 
| 
       649 
     | 
    
         
            -
                              </CI_ResponsibleParty>
         
     | 
| 
       650 
     | 
    
         
            -
                            </distributorContact>
         
     | 
| 
       651 
     | 
    
         
            -
                          </MD_Distributor>
         
     | 
| 
       652 
     | 
    
         
            -
                        </distributor>
         
     | 
| 
       653 
     | 
    
         
            -
                        <transferOptions>
         
     | 
| 
       654 
     | 
    
         
            -
                          <MD_DigitalTransferOptions>
         
     | 
| 
       655 
     | 
    
         
            -
                            <transferSize>
         
     | 
| 
       656 
     | 
    
         
            -
                              <gco:Real>0.3</gco:Real>
         
     | 
| 
       657 
     | 
    
         
            -
                            </transferSize>
         
     | 
| 
       658 
     | 
    
         
            -
                            <onLine>
         
     | 
| 
       659 
     | 
    
         
            -
                              <CI_OnlineResource>
         
     | 
| 
       660 
     | 
    
         
            -
                                <linkage>
         
     | 
| 
       661 
     | 
    
         
            -
                                  <URL>http://purl.stanford.edu/bb338jh0716</URL>
         
     | 
| 
       662 
     | 
    
         
            -
                                </linkage>
         
     | 
| 
       663 
     | 
    
         
            -
                                <protocol>
         
     | 
| 
       664 
     | 
    
         
            -
                                  <gco:CharacterString>http</gco:CharacterString>
         
     | 
| 
       665 
     | 
    
         
            -
                                </protocol>
         
     | 
| 
       666 
     | 
    
         
            -
                                <name>
         
     | 
| 
       667 
     | 
    
         
            -
                                  <gco:CharacterString>rr_cw22a_russ_hsa.shp</gco:CharacterString>
         
     | 
| 
       668 
     | 
    
         
            -
                                </name>
         
     | 
| 
       669 
     | 
    
         
            -
                                <function>
         
     | 
| 
       670 
     | 
    
         
            -
                                  <CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</CI_OnLineFunctionCode>
         
     | 
| 
       671 
     | 
    
         
            -
                                </function>
         
     | 
| 
       672 
     | 
    
         
            -
                              </CI_OnlineResource>
         
     | 
| 
       673 
     | 
    
         
            -
                            </onLine>
         
     | 
| 
       674 
     | 
    
         
            -
                          </MD_DigitalTransferOptions>
         
     | 
| 
       675 
     | 
    
         
            -
                        </transferOptions>
         
     | 
| 
       676 
     | 
    
         
            -
                      </MD_Distribution>
         
     | 
| 
       677 
     | 
    
         
            -
                    </distributionInfo>
         
     | 
| 
       678 
     | 
    
         
            -
                    <dataQualityInfo>
         
     | 
| 
       679 
     | 
    
         
            -
                      <DQ_DataQuality>
         
     | 
| 
       680 
     | 
    
         
            -
                        <scope>
         
     | 
| 
       681 
     | 
    
         
            -
                          <DQ_Scope>
         
     | 
| 
       682 
     | 
    
         
            -
                            <level>
         
     | 
| 
       683 
     | 
    
         
            -
                              <MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</MD_ScopeCode>
         
     | 
| 
       684 
     | 
    
         
            -
                            </level>
         
     | 
| 
       685 
     | 
    
         
            -
                          </DQ_Scope>
         
     | 
| 
       686 
     | 
    
         
            -
                        </scope>
         
     | 
| 
       687 
     | 
    
         
            -
                        <lineage>
         
     | 
| 
       688 
     | 
    
         
            -
                          <LI_Lineage>
         
     | 
| 
       689 
     | 
    
         
            -
                            <statement>
         
     | 
| 
       690 
     | 
    
         
            -
                              <gco:CharacterString>RR_cw22a_russ_hsa.shp was developed by Colin Brooks (CDFG and IHRMP). This layer represents the Hydrologic Sub-Area boundaries for the Russian River basin, as defined by the Calwater 2.2a watershed boundaries. The original CALWATER22 layer (Calwater 2.2a watershed boundaries) was developed as a coverage named calw22a and is administered by the Interagency California Watershed Mapping Committee (ICWMC). </gco:CharacterString>
         
     | 
| 
       691 
     | 
    
         
            -
                            </statement>
         
     | 
| 
       692 
     | 
    
         
            -
                          </LI_Lineage>
         
     | 
| 
       693 
     | 
    
         
            -
                        </lineage>
         
     | 
| 
       694 
     | 
    
         
            -
                      </DQ_DataQuality>
         
     | 
| 
       695 
     | 
    
         
            -
                    </dataQualityInfo>
         
     | 
| 
       696 
     | 
    
         
            -
                  </MD_Metadata>
         
     | 
| 
       697 
     | 
    
         
            -
                xml
         
     | 
| 
      
 19 
     | 
    
         
            +
                File.read(File.join(File.dirname(__FILE__), './docs/stanford_iso.xml'))
         
     | 
| 
       698 
20 
     | 
    
         
             
              end
         
     | 
| 
       699 
21 
     | 
    
         | 
| 
       700 
22 
     | 
    
         
             
              ##
         
     | 
| 
       701 
23 
     | 
    
         
             
              # Example FGDC XML from https://github.com/OpenGeoMetadata/edu.tufts/blob/master/0/108/220/208/fgdc.xml
         
     | 
| 
       702 
24 
     | 
    
         
             
              def tufts_fgdc
         
     | 
| 
       703 
     | 
    
         
            -
                 
     | 
| 
       704 
     | 
    
         
            -
             
     | 
| 
       705 
     | 
    
         
            -
                    <idinfo>
         
     | 
| 
       706 
     | 
    
         
            -
                      <citation>
         
     | 
| 
       707 
     | 
    
         
            -
                        <citeinfo>
         
     | 
| 
       708 
     | 
    
         
            -
                          <origin>Instituto Geografico Militar (Ecuador)</origin>
         
     | 
| 
       709 
     | 
    
         
            -
                          <pubdate>2011</pubdate>
         
     | 
| 
       710 
     | 
    
         
            -
                          <title>Drilling Towers 50k Scale Ecuador 2011</title>
         
     | 
| 
       711 
     | 
    
         
            -
                          <geoform>vector digital data</geoform>
         
     | 
| 
       712 
     | 
    
         
            -
                          <serinfo>
         
     | 
| 
       713 
     | 
    
         
            -
                            <sername>Ecuador</sername>
         
     | 
| 
       714 
     | 
    
         
            -
                          </serinfo>
         
     | 
| 
       715 
     | 
    
         
            -
                          <pubinfo>
         
     | 
| 
       716 
     | 
    
         
            -
                            <pubplace>Ecuador</pubplace>
         
     | 
| 
       717 
     | 
    
         
            -
                            <publish>Instituto Geografico Militar (Ecuador)</publish>
         
     | 
| 
       718 
     | 
    
         
            -
                          </pubinfo>
         
     | 
| 
       719 
     | 
    
         
            -
                          <onlink>http://www.geoportaligm.gob.ec/portal/</onlink>
         
     | 
| 
       720 
     | 
    
         
            -
                          <lworkcit>
         
     | 
| 
       721 
     | 
    
         
            -
                            <citeinfo>
         
     | 
| 
       722 
     | 
    
         
            -
                              <origin>Instituto Geografico Militar (Ecuador)</origin>
         
     | 
| 
       723 
     | 
    
         
            -
                              <pubdate>2011</pubdate>
         
     | 
| 
       724 
     | 
    
         
            -
                              <title>Instituto Geografico Militar Data</title>
         
     | 
| 
       725 
     | 
    
         
            -
                              <pubinfo>
         
     | 
| 
       726 
     | 
    
         
            -
                                <pubplace>Ecuador</pubplace>
         
     | 
| 
       727 
     | 
    
         
            -
                                <publish>Instituto Geografico Militar (Ecuador)</publish>
         
     | 
| 
       728 
     | 
    
         
            -
                              </pubinfo>
         
     | 
| 
       729 
     | 
    
         
            -
                              <onlink>http://www.geoportaligm.gob.ec/portal/</onlink>
         
     | 
| 
       730 
     | 
    
         
            -
                            </citeinfo>
         
     | 
| 
       731 
     | 
    
         
            -
                          </lworkcit>
         
     | 
| 
       732 
     | 
    
         
            -
                          <ftname Sync="TRUE">Ecuador50KDrillingTower11</ftname>
         
     | 
| 
       733 
     | 
    
         
            -
                  </citeinfo>
         
     | 
| 
       734 
     | 
    
         
            -
                      </citation>
         
     | 
| 
       735 
     | 
    
         
            -
                      <descript>
         
     | 
| 
       736 
     | 
    
         
            -
                        <abstract>This point dataset represents drilling towers in Ecuador created from 1:50,000 scale topographic maps.</abstract>
         
     | 
| 
       737 
     | 
    
         
            -
                        <purpose>This dataset is intended for researchers, students, and policy makers for reference and mapping purposes, and may be used for basic applications such as viewing, querying, and map output production, or to provide a basemap to support graphical overlays and analysis with other spatial data.</purpose>
         
     | 
| 
       738 
     | 
    
         
            -
                        <langdata Sync="TRUE">en</langdata>
         
     | 
| 
       739 
     | 
    
         
            -
                  </descript>
         
     | 
| 
       740 
     | 
    
         
            -
                      <timeperd>
         
     | 
| 
       741 
     | 
    
         
            -
                        <timeinfo>
         
     | 
| 
       742 
     | 
    
         
            -
                          <sngdate>
         
     | 
| 
       743 
     | 
    
         
            -
                            <caldate>2011</caldate>
         
     | 
| 
       744 
     | 
    
         
            -
                          </sngdate>
         
     | 
| 
       745 
     | 
    
         
            -
                        </timeinfo>
         
     | 
| 
       746 
     | 
    
         
            -
                        <current>publication date</current>
         
     | 
| 
       747 
     | 
    
         
            -
                      </timeperd>
         
     | 
| 
       748 
     | 
    
         
            -
                      <status>
         
     | 
| 
       749 
     | 
    
         
            -
                        <progress>Complete</progress>
         
     | 
| 
       750 
     | 
    
         
            -
                        <update>As needed</update>
         
     | 
| 
       751 
     | 
    
         
            -
                      </status>
         
     | 
| 
       752 
     | 
    
         
            -
                      <spdom>
         
     | 
| 
       753 
     | 
    
         
            -
                        <bounding>
         
     | 
| 
       754 
     | 
    
         
            -
                          <westbc>
         
     | 
| 
       755 
     | 
    
         
            -
                  -79.904768</westbc>
         
     | 
| 
       756 
     | 
    
         
            -
                          <eastbc>
         
     | 
| 
       757 
     | 
    
         
            -
                  -79.904768</eastbc>
         
     | 
| 
       758 
     | 
    
         
            -
                          <northbc>
         
     | 
| 
       759 
     | 
    
         
            -
                  -1.377743</northbc>
         
     | 
| 
       760 
     | 
    
         
            -
                          <southbc>
         
     | 
| 
       761 
     | 
    
         
            -
                  -1.377743</southbc>
         
     | 
| 
       762 
     | 
    
         
            -
                        </bounding>
         
     | 
| 
       763 
     | 
    
         
            -
                        <lboundng>
         
     | 
| 
       764 
     | 
    
         
            -
                  <leftbc Sync="TRUE">621844.388200</leftbc>
         
     | 
| 
       765 
     | 
    
         
            -
                  <rightbc Sync="TRUE">621844.388200</rightbc>
         
     | 
| 
       766 
     | 
    
         
            -
                  <bottombc Sync="TRUE">9847689.668600</bottombc>
         
     | 
| 
       767 
     | 
    
         
            -
                  <topbc Sync="TRUE">9847689.668600</topbc>
         
     | 
| 
       768 
     | 
    
         
            -
                  </lboundng>
         
     | 
| 
       769 
     | 
    
         
            -
                  </spdom>
         
     | 
| 
       770 
     | 
    
         
            -
                      <keywords>
         
     | 
| 
       771 
     | 
    
         
            -
                        <theme>
         
     | 
| 
       772 
     | 
    
         
            -
                          <themekt>FGDC</themekt>
         
     | 
| 
       773 
     | 
    
         
            -
                          <themekey>point</themekey>
         
     | 
| 
       774 
     | 
    
         
            -
                        </theme>
         
     | 
| 
       775 
     | 
    
         
            -
                        <theme>
         
     | 
| 
       776 
     | 
    
         
            -
                          <themekt>ISO 19115 Topic Category</themekt>
         
     | 
| 
       777 
     | 
    
         
            -
                          <themekey>structure</themekey>
         
     | 
| 
       778 
     | 
    
         
            -
                          <themekey>economy</themekey>
         
     | 
| 
       779 
     | 
    
         
            -
                        </theme>
         
     | 
| 
       780 
     | 
    
         
            -
                        <theme>
         
     | 
| 
       781 
     | 
    
         
            -
                          <themekt>LCSH</themekt>
         
     | 
| 
       782 
     | 
    
         
            -
                          <themekey>Drilling platforms</themekey>
         
     | 
| 
       783 
     | 
    
         
            -
                          <themekey>Oil well drilling</themekey>
         
     | 
| 
       784 
     | 
    
         
            -
                        </theme>
         
     | 
| 
       785 
     | 
    
         
            -
                        <place>
         
     | 
| 
       786 
     | 
    
         
            -
                          <placekt>GNS</placekt>
         
     | 
| 
       787 
     | 
    
         
            -
                          <placekey>Ecuador</placekey>
         
     | 
| 
       788 
     | 
    
         
            -
                          <placekey>República del Ecuador</placekey>
         
     | 
| 
       789 
     | 
    
         
            -
                        </place>
         
     | 
| 
       790 
     | 
    
         
            -
                        <place>
         
     | 
| 
       791 
     | 
    
         
            -
                          <placekt>LCNH</placekt>
         
     | 
| 
       792 
     | 
    
         
            -
                          <placekey>Northern Hemisphere</placekey>
         
     | 
| 
       793 
     | 
    
         
            -
                          <placekey>Southern Hemisphere</placekey>
         
     | 
| 
       794 
     | 
    
         
            -
                          <placekey>Western Hemisphere</placekey>
         
     | 
| 
       795 
     | 
    
         
            -
                          <placekey>South America</placekey>
         
     | 
| 
       796 
     | 
    
         
            -
                        </place>
         
     | 
| 
       797 
     | 
    
         
            -
                      </keywords>
         
     | 
| 
       798 
     | 
    
         
            -
                      <accconst>Unrestricted Access Online</accconst>
         
     | 
| 
       799 
     | 
    
         
            -
                      <useconst>For educational noncommercial use only.</useconst>
         
     | 
| 
       800 
     | 
    
         
            -
                      <ptcontac>
         
     | 
| 
       801 
     | 
    
         
            -
                        <cntinfo>
         
     | 
| 
       802 
     | 
    
         
            -
                          <cntorgp>
         
     | 
| 
       803 
     | 
    
         
            -
                            <cntorg>Instituto Geografico Militar</cntorg>
         
     | 
| 
       804 
     | 
    
         
            -
                          </cntorgp>
         
     | 
| 
       805 
     | 
    
         
            -
                          <cntpos>Gestion Geografica- Gestion IDE</cntpos>
         
     | 
| 
       806 
     | 
    
         
            -
                          <cntaddr>
         
     | 
| 
       807 
     | 
    
         
            -
                            <addrtype>mailing and physical address</addrtype>
         
     | 
| 
       808 
     | 
    
         
            -
                            <address>Senierges E4-676</address>
         
     | 
| 
       809 
     | 
    
         
            -
                            <city>Sector el Dorado, Quito</city>
         
     | 
| 
       810 
     | 
    
         
            -
                            <state>Pinchincha</state>
         
     | 
| 
       811 
     | 
    
         
            -
                            <postal>17-01-2435</postal>
         
     | 
| 
       812 
     | 
    
         
            -
                            <country>Ecuador</country>
         
     | 
| 
       813 
     | 
    
         
            -
                          </cntaddr>
         
     | 
| 
       814 
     | 
    
         
            -
                          <cntvoice>3975100 extension 129</cntvoice>
         
     | 
| 
       815 
     | 
    
         
            -
                          <cntemail>nicolay.vaca@mail.igm.gob.ec</cntemail>
         
     | 
| 
       816 
     | 
    
         
            -
                          <cntinst>Capt. Nicolay Vaca (Jefe Gestión Geográfica) nicolay.vaca@mail.igm.gob.ec
         
     | 
| 
       817 
     | 
    
         
            -
             
     | 
| 
       818 
     | 
    
         
            -
                  Ing. Susana Arciniegas (Investigación y desarrollo) susana.arciniegas@mail.igm.gob.ec
         
     | 
| 
       819 
     | 
    
         
            -
             
     | 
| 
       820 
     | 
    
         
            -
                  Ing. Miguel Ruano (Normalización)miguel.ruano@mail.igm.gob.ec
         
     | 
| 
       821 
     | 
    
         
            -
             
     | 
| 
       822 
     | 
    
         
            -
                  Ing. Edison Bravo (Administrador de Contenidos Geográficos)edison.bravo@mail.igm.gob.ec
         
     | 
| 
       823 
     | 
    
         
            -
             
     | 
| 
       824 
     | 
    
         
            -
                  Ing. Fernanda León (Administradora de Contenidos Geográficos)fernanda.leon@mail.igm.gob.ec
         
     | 
| 
       825 
     | 
    
         
            -
             
     | 
| 
       826 
     | 
    
         
            -
                  Ing. Pablo Montenegro (Administrador de Aplicaciones Geoinformáticas)  pablo.montenegro@mail.igm.gob.ec
         
     | 
| 
       827 
     | 
    
         
            -
             
     | 
| 
       828 
     | 
    
         
            -
                  Ing. Mauricio Albán (Administrador de Aplicaciones Geoinformáticas)mauricio.alban@mail.igm.gob.ec
         
     | 
| 
      
 25 
     | 
    
         
            +
                File.read(File.join(File.dirname(__FILE__), './docs/tufts_fgdc.xml'))
         
     | 
| 
      
 26 
     | 
    
         
            +
              end
         
     | 
| 
       829 
27 
     | 
    
         | 
| 
       830 
     | 
    
         
            -
             
     | 
| 
       831 
     | 
    
         
            -
             
     | 
| 
       832 
     | 
    
         
            -
                      </ptcontac>
         
     | 
| 
       833 
     | 
    
         
            -
                      <native>Microsoft Windows Vista Version 6.1 (Build 7601) Service Pack 1; ESRI ArcCatalog 9.3.1.4000</native>
         
     | 
| 
       834 
     | 
    
         
            -
                      <natvform Sync="TRUE">Shapefile</natvform>
         
     | 
| 
       835 
     | 
    
         
            -
                  </idinfo>
         
     | 
| 
       836 
     | 
    
         
            -
                    <dataqual>
         
     | 
| 
       837 
     | 
    
         
            -
                      <lineage>
         
     | 
| 
       838 
     | 
    
         
            -
                        <srcinfo>
         
     | 
| 
       839 
     | 
    
         
            -
                          <srcscale>1:50,000</srcscale>
         
     | 
| 
       840 
     | 
    
         
            -
                          <srccontr>Instituto Geografico Militar (Ecuador)</srccontr>
         
     | 
| 
       841 
     | 
    
         
            -
                        </srcinfo>
         
     | 
| 
       842 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       843 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       844 
     | 
    
         
            -
                          <srcused>C:\Users\nsusma01\AppData\Local\Temp\\xmlEFBB.tmp</srcused>
         
     | 
| 
       845 
     | 
    
         
            -
                          <procdate>20130212</procdate>
         
     | 
| 
       846 
     | 
    
         
            -
                          <proctime>11073200</proctime>
         
     | 
| 
       847 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       848 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       849 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       850 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Starter Metadata Template -Tufts - UTF-8.xml</srcused>
         
     | 
| 
       851 
     | 
    
         
            -
                          <procdate>20130708</procdate>
         
     | 
| 
       852 
     | 
    
         
            -
                          <proctime>12383100</proctime>
         
     | 
| 
       853 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       854 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       855 
     | 
    
         
            -
                          <procdesc>Name changed from torre_perforacion_p to Ecuador50KDrillingTower11</procdesc>
         
     | 
| 
       856 
     | 
    
         
            -
                          <procdate>20130708</procdate>
         
     | 
| 
       857 
     | 
    
         
            -
                          <proccont>
         
     | 
| 
       858 
     | 
    
         
            -
                            <cntinfo>
         
     | 
| 
       859 
     | 
    
         
            -
                              <cntorgp>
         
     | 
| 
       860 
     | 
    
         
            -
                                <cntorg>Tufts University GIS Center</cntorg>
         
     | 
| 
       861 
     | 
    
         
            -
                              </cntorgp>
         
     | 
| 
       862 
     | 
    
         
            -
                              <cntpos>GIS Data Technician</cntpos>
         
     | 
| 
       863 
     | 
    
         
            -
                              <cntaddr>
         
     | 
| 
       864 
     | 
    
         
            -
                                <addrtype>mailing and physical address</addrtype>
         
     | 
| 
       865 
     | 
    
         
            -
                                <address>Academic Technology</address>
         
     | 
| 
       866 
     | 
    
         
            -
                                <address>16 Dearborn Ave</address>
         
     | 
| 
       867 
     | 
    
         
            -
                                <city>Somerville</city>
         
     | 
| 
       868 
     | 
    
         
            -
                                <state>MA</state>
         
     | 
| 
       869 
     | 
    
         
            -
                                <postal>02144</postal>
         
     | 
| 
       870 
     | 
    
         
            -
                                <country>USA</country>
         
     | 
| 
       871 
     | 
    
         
            -
                              </cntaddr>
         
     | 
| 
       872 
     | 
    
         
            -
                              <cntvoice>617-627-3380</cntvoice>
         
     | 
| 
       873 
     | 
    
         
            -
                              <cntemail>gis-support@elist.tufts.edu</cntemail>
         
     | 
| 
       874 
     | 
    
         
            -
                              <hours>Monday-Friday, 9:00 AM-5:00 PM, EST-USA</hours>
         
     | 
| 
       875 
     | 
    
         
            -
                            </cntinfo>
         
     | 
| 
       876 
     | 
    
         
            -
                          </proccont>
         
     | 
| 
       877 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       878 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       879 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       880 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\IGMMetadata.xml</srcused>
         
     | 
| 
       881 
     | 
    
         
            -
                          <procdate>20130708</procdate>
         
     | 
| 
       882 
     | 
    
         
            -
                          <proctime>15510900</proctime>
         
     | 
| 
       883 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       884 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       885 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       886 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\acequia_l\EcuadorIrrigation12.shp.xml</srcused>
         
     | 
| 
       887 
     | 
    
         
            -
                          <procdate>20130709</procdate>
         
     | 
| 
       888 
     | 
    
         
            -
                          <proctime>09201900</proctime>
         
     | 
| 
       889 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       890 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       891 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       892 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\acueducto_a\EcuadorAqueducts11.shp.xml</srcused>
         
     | 
| 
       893 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       894 
     | 
    
         
            -
                          <proctime>09400600</proctime>
         
     | 
| 
       895 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       896 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       897 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       898 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\aeropuerto_a\EcuadorAirports11.shp.xml</srcused>
         
     | 
| 
       899 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       900 
     | 
    
         
            -
                          <proctime>11044900</proctime>
         
     | 
| 
       901 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       902 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       903 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       904 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\alcantarilla_p\EcuadorCulvert11.shp.xml</srcused>
         
     | 
| 
       905 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       906 
     | 
    
         
            -
                          <proctime>11094800</proctime>
         
     | 
| 
       907 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       908 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       909 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       910 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\antena_parabolica_p\EcuadorSatelliteDish11.shp.xml</srcused>
         
     | 
| 
       911 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       912 
     | 
    
         
            -
                          <proctime>11211000</proctime>
         
     | 
| 
       913 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       914 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       915 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       916 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\area_inundacion_a\EcuadorInundationArea11.shp.xml</srcused>
         
     | 
| 
       917 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       918 
     | 
    
         
            -
                          <proctime>11315000</proctime>
         
     | 
| 
       919 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       920 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       921 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       922 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\arena_a\EcuadorArena11.shp.xml</srcused>
         
     | 
| 
       923 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       924 
     | 
    
         
            -
                          <proctime>11501300</proctime>
         
     | 
| 
       925 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       926 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       927 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       928 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\arena_p\EcuadorArenaPt11.shp.xml</srcused>
         
     | 
| 
       929 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       930 
     | 
    
         
            -
                          <proctime>12433800</proctime>
         
     | 
| 
       931 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       932 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       933 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       934 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\bocatoma_p\EcuadorWaterIntake11.shp.xml</srcused>
         
     | 
| 
       935 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       936 
     | 
    
         
            -
                          <proctime>12513700</proctime>
         
     | 
| 
       937 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       938 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       939 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       940 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\bodega_p\EcuadorWarehouse11.shp.xml</srcused>
         
     | 
| 
       941 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       942 
     | 
    
         
            -
                          <proctime>13510700</proctime>
         
     | 
| 
       943 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       944 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       945 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       946 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\cable_aereo_l\EcuadorRailroad11.shp.xml</srcused>
         
     | 
| 
       947 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       948 
     | 
    
         
            -
                          <proctime>14203000</proctime>
         
     | 
| 
       949 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       950 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       951 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       952 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\campamento_a\EcuadorTemporaryHousing11.shp.xml</srcused>
         
     | 
| 
       953 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       954 
     | 
    
         
            -
                          <proctime>14490000</proctime>
         
     | 
| 
       955 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       956 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       957 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       958 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\campamento_militar_p\EcuadorMilitaryCamp11.shp.xml</srcused>
         
     | 
| 
       959 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       960 
     | 
    
         
            -
                          <proctime>14551100</proctime>
         
     | 
| 
       961 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       962 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       963 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       964 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\campamento_p\EcuadorTemporaryHousingPt11.shp.xml</srcused>
         
     | 
| 
       965 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       966 
     | 
    
         
            -
                          <proctime>15085600</proctime>
         
     | 
| 
       967 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       968 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       969 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       970 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\campo_gas_a\EcuadorGasFields11.shp.xml</srcused>
         
     | 
| 
       971 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       972 
     | 
    
         
            -
                          <proctime>15301900</proctime>
         
     | 
| 
       973 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       974 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       975 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       976 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\cancha_a\EcuadorFields11.shp.xml</srcused>
         
     | 
| 
       977 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       978 
     | 
    
         
            -
                          <proctime>15455200</proctime>
         
     | 
| 
       979 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       980 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       981 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       982 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\cantera_a\EcuadorQuarries11.shp.xml</srcused>
         
     | 
| 
       983 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       984 
     | 
    
         
            -
                          <proctime>16113800</proctime>
         
     | 
| 
       985 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       986 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       987 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       988 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\caracteristica_terreno_a\EcuadorSurfaceCover11.shp.xml</srcused>
         
     | 
| 
       989 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       990 
     | 
    
         
            -
                          <proctime>16232300</proctime>
         
     | 
| 
       991 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       992 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       993 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       994 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\casa_a\EcuadorHouses11.shp.xml</srcused>
         
     | 
| 
       995 
     | 
    
         
            -
                          <procdate>20130710</procdate>
         
     | 
| 
       996 
     | 
    
         
            -
                          <proctime>16430800</proctime>
         
     | 
| 
       997 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       998 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       999 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1000 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\cascada_l\EcuadorWaterfalls11.shp.xml</srcused>
         
     | 
| 
       1001 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1002 
     | 
    
         
            -
                          <proctime>09501700</proctime>
         
     | 
| 
       1003 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1004 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1005 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1006 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\cementerio_a\EcuadorCemetery11.shp.xml</srcused>
         
     | 
| 
       1007 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1008 
     | 
    
         
            -
                          <proctime>10112700</proctime>
         
     | 
| 
       1009 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1010 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1011 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1012 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\central_electrica_a\EcuadorPowerPlants11.shp.xml</srcused>
         
     | 
| 
       1013 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1014 
     | 
    
         
            -
                          <proctime>10221000</proctime>
         
     | 
| 
       1015 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1016 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1017 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1018 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\central_electrica_p\EcuadorPowerPlantsPoints11.shp.xml</srcused>
         
     | 
| 
       1019 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1020 
     | 
    
         
            -
                          <proctime>10282300</proctime>
         
     | 
| 
       1021 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1022 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1023 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1024 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\cerca_l\EcuadorFenceBoundaries11.shp.xml</srcused>
         
     | 
| 
       1025 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1026 
     | 
    
         
            -
                          <proctime>10495600</proctime>
         
     | 
| 
       1027 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1028 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1029 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1030 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\choza_a\EcuadorHutsShacks11.shp.xml</srcused>
         
     | 
| 
       1031 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1032 
     | 
    
         
            -
                          <proctime>11030100</proctime>
         
     | 
| 
       1033 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1034 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1035 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1036 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\cienaga_a\EcuadorSwamps11.shp.xml</srcused>
         
     | 
| 
       1037 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1038 
     | 
    
         
            -
                          <proctime>11181500</proctime>
         
     | 
| 
       1039 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1040 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1041 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1042 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\complejo_a\EcuadorEntertainment11.shp.xml</srcused>
         
     | 
| 
       1043 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1044 
     | 
    
         
            -
                          <proctime>11351900</proctime>
         
     | 
| 
       1045 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1046 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1047 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1048 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\compuerta_p\EcuadorFloodGates11.shp.xml</srcused>
         
     | 
| 
       1049 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1050 
     | 
    
         
            -
                          <proctime>11470800</proctime>
         
     | 
| 
       1051 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1052 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1053 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1054 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\comunidad_a\EcuadorIndigenousComm11.shp.xml</srcused>
         
     | 
| 
       1055 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1056 
     | 
    
         
            -
                          <proctime>11592500</proctime>
         
     | 
| 
       1057 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1058 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1059 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1060 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\corral_a\EcuadorLivestock11.shp.xml</srcused>
         
     | 
| 
       1061 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1062 
     | 
    
         
            -
                          <proctime>12363900</proctime>
         
     | 
| 
       1063 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1064 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1065 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1066 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\curva_batimetrica_l\EcuadorBathymetry11.shp.xml</srcused>
         
     | 
| 
       1067 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1068 
     | 
    
         
            -
                          <proctime>13051400</proctime>
         
     | 
| 
       1069 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1070 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1071 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1072 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\curva_nivel_l\EcuadorElevation11.shp.xml</srcused>
         
     | 
| 
       1073 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1074 
     | 
    
         
            -
                          <proctime>13143000</proctime>
         
     | 
| 
       1075 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1076 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1077 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1078 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\duna_a\EcuadorSandDunes11.shp.xml</srcused>
         
     | 
| 
       1079 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1080 
     | 
    
         
            -
                          <proctime>13225500</proctime>
         
     | 
| 
       1081 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1082 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1083 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1084 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\edificio_a\EcuadorBuildings11.shp.xml</srcused>
         
     | 
| 
       1085 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1086 
     | 
    
         
            -
                          <proctime>13452700</proctime>
         
     | 
| 
       1087 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1088 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1089 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1090 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\embalse_a\EcuadorReservoir11.shp.xml</srcused>
         
     | 
| 
       1091 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1092 
     | 
    
         
            -
                          <proctime>13564600</proctime>
         
     | 
| 
       1093 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1094 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1095 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1096 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\esclusa_l\EcuadorSluice11.shp.xml</srcused>
         
     | 
| 
       1097 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1098 
     | 
    
         
            -
                          <proctime>14081800</proctime>
         
     | 
| 
       1099 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1100 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1101 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1102 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\establo_a\EcuadorStables11.shp.xml</srcused>
         
     | 
| 
       1103 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1104 
     | 
    
         
            -
                          <proctime>14194600</proctime>
         
     | 
| 
       1105 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1106 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1107 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1108 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\estacion_a\EcuadorStation11.shp.xml</srcused>
         
     | 
| 
       1109 
     | 
    
         
            -
                          <procdate>20130711</procdate>
         
     | 
| 
       1110 
     | 
    
         
            -
                          <proctime>15354600</proctime>
         
     | 
| 
       1111 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1112 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1113 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1114 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\estadio_a\EcuadorStadiums11.shp.xml</srcused>
         
     | 
| 
       1115 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1116 
     | 
    
         
            -
                          <proctime>12582700</proctime>
         
     | 
| 
       1117 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1118 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1119 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1120 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\estrato_rocoso_a\EcuadorTerrain11.shp.xml</srcused>
         
     | 
| 
       1121 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1122 
     | 
    
         
            -
                          <proctime>13041600</proctime>
         
     | 
| 
       1123 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1124 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1125 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1126 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\faro_p\EcuadorLighthouse11.shp.xml</srcused>
         
     | 
| 
       1127 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1128 
     | 
    
         
            -
                          <proctime>13233600</proctime>
         
     | 
| 
       1129 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1130 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1131 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1132 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\granjas_acuaticas_a\EcuadorFishFarm11.shp.xml</srcused>
         
     | 
| 
       1133 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1134 
     | 
    
         
            -
                          <proctime>13281900</proctime>
         
     | 
| 
       1135 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1136 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1137 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1138 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\granjas_acuaticas_p\EcuadorFishFarmsPoints11.shp.xml</srcused>
         
     | 
| 
       1139 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1140 
     | 
    
         
            -
                          <proctime>13301300</proctime>
         
     | 
| 
       1141 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1142 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1143 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1144 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\hacienda_a\EcuadorFarms11.shp.xml</srcused>
         
     | 
| 
       1145 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1146 
     | 
    
         
            -
                          <proctime>13464300</proctime>
         
     | 
| 
       1147 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1148 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1149 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1150 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\helipuerto_p\EcuadorHelipuerts11.shp.xml</srcused>
         
     | 
| 
       1151 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1152 
     | 
    
         
            -
                          <proctime>15301800</proctime>
         
     | 
| 
       1153 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1154 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1155 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1156 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\instalacion_militar_a\EcuadorMilitary11.shp.xml</srcused>
         
     | 
| 
       1157 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1158 
     | 
    
         
            -
                          <proctime>15375800</proctime>
         
     | 
| 
       1159 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1160 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1161 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1162 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\instalacion_militar_p\EcuadorMilitaryPoints11.shp.xml</srcused>
         
     | 
| 
       1163 
     | 
    
         
            -
                          <procdate>20130712</procdate>
         
     | 
| 
       1164 
     | 
    
         
            -
                          <proctime>15523800</proctime>
         
     | 
| 
       1165 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1166 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1167 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1168 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\instalaciones_petroliferas_a\EcuadorOilProduction11.shp.xml</srcused>
         
     | 
| 
       1169 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1170 
     | 
    
         
            -
                          <proctime>09151700</proctime>
         
     | 
| 
       1171 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1172 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1173 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1174 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\isla_a\EcuadorIslands11.shp.xml</srcused>
         
     | 
| 
       1175 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1176 
     | 
    
         
            -
                          <proctime>09483400</proctime>
         
     | 
| 
       1177 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1178 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1179 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1180 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\linea_transmision_electrica_l\EcuadorElectricLines11.shp.xml</srcused>
         
     | 
| 
       1181 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1182 
     | 
    
         
            -
                          <proctime>10021800</proctime>
         
     | 
| 
       1183 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1184 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1185 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1186 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\linea_tren_l\EcuadorRailLines11.shp.xml</srcused>
         
     | 
| 
       1187 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1188 
     | 
    
         
            -
                          <proctime>10260800</proctime>
         
     | 
| 
       1189 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1190 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1191 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1192 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\malecon_l\EcuadorBreakwater11.shp.xml</srcused>
         
     | 
| 
       1193 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1194 
     | 
    
         
            -
                          <proctime>10374500</proctime>
         
     | 
| 
       1195 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1196 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1197 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1198 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\manantial_p\EcuadorNaturalSpring11.shp.xml</srcused>
         
     | 
| 
       1199 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1200 
     | 
    
         
            -
                          <proctime>10560800</proctime>
         
     | 
| 
       1201 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1202 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1203 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1204 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\mina_a\EcuadorMine11.shp.xml</srcused>
         
     | 
| 
       1205 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1206 
     | 
    
         
            -
                          <proctime>11242100</proctime>
         
     | 
| 
       1207 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1208 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1209 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1210 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\mirador_p\EcuadorViewpoint11.shp.xml</srcused>
         
     | 
| 
       1211 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1212 
     | 
    
         
            -
                          <proctime>11364200</proctime>
         
     | 
| 
       1213 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1214 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1215 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1216 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\monumento_p\EcuadorMonuments11.shp.xml</srcused>
         
     | 
| 
       1217 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1218 
     | 
    
         
            -
                          <proctime>11452800</proctime>
         
     | 
| 
       1219 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1220 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1221 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1222 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\muelle_a\EcuadorDocks11.shp.xml</srcused>
         
     | 
| 
       1223 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1224 
     | 
    
         
            -
                          <proctime>12500200</proctime>
         
     | 
| 
       1225 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1226 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1227 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1228 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\muro_contencion_l\EcuadorRetainingWalls11.shp.xml</srcused>
         
     | 
| 
       1229 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1230 
     | 
    
         
            -
                          <proctime>12590400</proctime>
         
     | 
| 
       1231 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1232 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1233 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1234 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\muro_l\EcuadorWalls11.shp.xml</srcused>
         
     | 
| 
       1235 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1236 
     | 
    
         
            -
                          <proctime>13440800</proctime>
         
     | 
| 
       1237 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1238 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1239 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1240 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\piscina_a\EcuadorPools11.shp.xml</srcused>
         
     | 
| 
       1241 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1242 
     | 
    
         
            -
                          <proctime>13532400</proctime>
         
     | 
| 
       1243 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1244 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1245 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1246 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\pista_aterrizaje_l\EcuadorRunways11.shp.xml</srcused>
         
     | 
| 
       1247 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1248 
     | 
    
         
            -
                          <proctime>14211000</proctime>
         
     | 
| 
       1249 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1250 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1251 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1252 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\pista_carreras_a\RacetracksEquador11.shp.xml</srcused>
         
     | 
| 
       1253 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1254 
     | 
    
         
            -
                          <proctime>14354300</proctime>
         
     | 
| 
       1255 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1256 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1257 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1258 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\planta_procesamiento_p\EcuadorProcessingPlant11.shp.xml</srcused>
         
     | 
| 
       1259 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1260 
     | 
    
         
            -
                          <proctime>15371800</proctime>
         
     | 
| 
       1261 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1262 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1263 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1264 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\poblado_p\EcuadorCitiesTowns11.shp.xml</srcused>
         
     | 
| 
       1265 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1266 
     | 
    
         
            -
                          <proctime>15542200</proctime>
         
     | 
| 
       1267 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1268 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1269 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1270 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\pozo_a\EcuadorLiqGasWell11.shp.xml</srcused>
         
     | 
| 
       1271 
     | 
    
         
            -
                          <procdate>20130715</procdate>
         
     | 
| 
       1272 
     | 
    
         
            -
                          <proctime>16164400</proctime>
         
     | 
| 
       1273 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1274 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1275 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1276 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\presa_a\EcuadorReservoirs11.shp.xml</srcused>
         
     | 
| 
       1277 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1278 
     | 
    
         
            -
                          <proctime>09464800</proctime>
         
     | 
| 
       1279 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1280 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1281 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1282 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\procesamiento_residuos_a\EcuadorWaste11.shp.xml</srcused>
         
     | 
| 
       1283 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1284 
     | 
    
         
            -
                          <proctime>10323300</proctime>
         
     | 
| 
       1285 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1286 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1287 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1288 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\puente_l\EcuadorBridges11.shp.xml</srcused>
         
     | 
| 
       1289 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1290 
     | 
    
         
            -
                          <proctime>12163200</proctime>
         
     | 
| 
       1291 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1292 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1293 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1294 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\rio_a\EcuadorRiver11.shp.xml</srcused>
         
     | 
| 
       1295 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1296 
     | 
    
         
            -
                          <proctime>12242800</proctime>
         
     | 
| 
       1297 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1298 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1299 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1300 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\rio_l\EucadorRiversLine11.shp.xml</srcused>
         
     | 
| 
       1301 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1302 
     | 
    
         
            -
                          <proctime>12344000</proctime>
         
     | 
| 
       1303 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1304 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1305 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1306 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\roca_a\EcuadorRocks11.shp.xml</srcused>
         
     | 
| 
       1307 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1308 
     | 
    
         
            -
                          <proctime>13280000</proctime>
         
     | 
| 
       1309 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1310 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1311 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1312 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\ruta_ferry_l\EcuadorFerryRoute11.shp.xml</srcused>
         
     | 
| 
       1313 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1314 
     | 
    
         
            -
                          <proctime>13492900</proctime>
         
     | 
| 
       1315 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1316 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1317 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1318 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\ruta_ferry_p\EcuadorFerryRoutePoint11.shp.xml</srcused>
         
     | 
| 
       1319 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1320 
     | 
    
         
            -
                          <proctime>14222500</proctime>
         
     | 
| 
       1321 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1322 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1323 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1324 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\sin_informacion_a\EcuadorNoInfo11.shp.xml</srcused>
         
     | 
| 
       1325 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1326 
     | 
    
         
            -
                          <proctime>14275700</proctime>
         
     | 
| 
       1327 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1328 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1329 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1330 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\sitio_arqueologico_a\EcuadorArchaeologicalSites11.shp.xml</srcused>
         
     | 
| 
       1331 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1332 
     | 
    
         
            -
                          <proctime>14375100</proctime>
         
     | 
| 
       1333 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1334 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1335 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1336 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\subestacion_a\EcuadorSubstations11.shp.xml</srcused>
         
     | 
| 
       1337 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1338 
     | 
    
         
            -
                          <proctime>15210500</proctime>
         
     | 
| 
       1339 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1340 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1341 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1342 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\tanque_a\EcuadorTanks11.shp.xml</srcused>
         
     | 
| 
       1343 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1344 
     | 
    
         
            -
                          <proctime>15562900</proctime>
         
     | 
| 
       1345 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1346 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1347 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1348 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\terraplen_a\EcuadorEmbank11.shp.xml</srcused>
         
     | 
| 
       1349 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1350 
     | 
    
         
            -
                          <proctime>16103500</proctime>
         
     | 
| 
       1351 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1352 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1353 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1354 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\terreno_inundable_a\EcuadorFloodPlain11.shp.xml</srcused>
         
     | 
| 
       1355 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1356 
     | 
    
         
            -
                          <proctime>16240700</proctime>
         
     | 
| 
       1357 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1358 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1359 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1360 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\texto_descriptivo_l\EcuadorUniqueFeature11.shp.xml</srcused>
         
     | 
| 
       1361 
     | 
    
         
            -
                          <procdate>20130716</procdate>
         
     | 
| 
       1362 
     | 
    
         
            -
                          <proctime>16404000</proctime>
         
     | 
| 
       1363 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1364 
     | 
    
         
            -
                        <procstep>
         
     | 
| 
       1365 
     | 
    
         
            -
                          <procdesc>Metadata imported.</procdesc>
         
     | 
| 
       1366 
     | 
    
         
            -
                          <srcused>S:\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\torre_agua_p\EcuadorWaterTower11.shp.xml</srcused>
         
     | 
| 
       1367 
     | 
    
         
            -
                          <procdate>20130717</procdate>
         
     | 
| 
       1368 
     | 
    
         
            -
                          <proctime>10330200</proctime>
         
     | 
| 
       1369 
     | 
    
         
            -
                        </procstep>
         
     | 
| 
       1370 
     | 
    
         
            -
                      </lineage>
         
     | 
| 
       1371 
     | 
    
         
            -
                    </dataqual>
         
     | 
| 
       1372 
     | 
    
         
            -
                    <spdoinfo>
         
     | 
| 
       1373 
     | 
    
         
            -
                      <direct>Vector</direct>
         
     | 
| 
       1374 
     | 
    
         
            -
                      <ptvctinf>
         
     | 
| 
       1375 
     | 
    
         
            -
                        <sdtsterm Name="Ecuador50KDrillingTower11">
         
     | 
| 
       1376 
     | 
    
         
            -
                          <sdtstype>Entity point</sdtstype>
         
     | 
| 
       1377 
     | 
    
         
            -
                          <ptvctcnt>1</ptvctcnt>
         
     | 
| 
       1378 
     | 
    
         
            -
                        </sdtsterm>
         
     | 
| 
       1379 
     | 
    
         
            -
                        <esriterm Name="Ecuador50KDrillingTower11">
         
     | 
| 
       1380 
     | 
    
         
            -
                  <efeatyp Sync="TRUE">Simple</efeatyp>
         
     | 
| 
       1381 
     | 
    
         
            -
                  <efeageom Sync="TRUE">Point</efeageom>
         
     | 
| 
       1382 
     | 
    
         
            -
                  <esritopo Sync="TRUE">FALSE</esritopo>
         
     | 
| 
       1383 
     | 
    
         
            -
                  <efeacnt Sync="TRUE">1</efeacnt>
         
     | 
| 
       1384 
     | 
    
         
            -
                  <spindex Sync="TRUE">TRUE</spindex>
         
     | 
| 
       1385 
     | 
    
         
            -
                  <linrefer Sync="TRUE">FALSE</linrefer>
         
     | 
| 
       1386 
     | 
    
         
            -
                  </esriterm>
         
     | 
| 
       1387 
     | 
    
         
            -
                  </ptvctinf>
         
     | 
| 
       1388 
     | 
    
         
            -
                    </spdoinfo>
         
     | 
| 
       1389 
     | 
    
         
            -
                    <spref>
         
     | 
| 
       1390 
     | 
    
         
            -
                      <horizsys>
         
     | 
| 
       1391 
     | 
    
         
            -
                        <planar>
         
     | 
| 
       1392 
     | 
    
         
            -
                          <planci>
         
     | 
| 
       1393 
     | 
    
         
            -
                            <plance>coordinate pair</plance>
         
     | 
| 
       1394 
     | 
    
         
            -
                            <coordrep>
         
     | 
| 
       1395 
     | 
    
         
            -
                              <absres>0.000000</absres>
         
     | 
| 
       1396 
     | 
    
         
            -
                              <ordres>0.000000</ordres>
         
     | 
| 
       1397 
     | 
    
         
            -
                            </coordrep>
         
     | 
| 
       1398 
     | 
    
         
            -
                            <plandu>meters</plandu>
         
     | 
| 
       1399 
     | 
    
         
            -
                          </planci>
         
     | 
| 
       1400 
     | 
    
         
            -
                          <gridsys>
         
     | 
| 
       1401 
     | 
    
         
            -
                  <gridsysn Sync="TRUE">Universal Transverse Mercator</gridsysn>
         
     | 
| 
       1402 
     | 
    
         
            -
                  <utm>
         
     | 
| 
       1403 
     | 
    
         
            -
                  <utmzone Sync="TRUE">-17</utmzone>
         
     | 
| 
       1404 
     | 
    
         
            -
                  <transmer>
         
     | 
| 
       1405 
     | 
    
         
            -
                  <sfctrmer Sync="TRUE">0.999600</sfctrmer>
         
     | 
| 
       1406 
     | 
    
         
            -
                  <longcm Sync="TRUE">-81.000000</longcm>
         
     | 
| 
       1407 
     | 
    
         
            -
                  <latprjo Sync="TRUE">0.000000</latprjo>
         
     | 
| 
       1408 
     | 
    
         
            -
                  <feast Sync="TRUE">500000.000000</feast>
         
     | 
| 
       1409 
     | 
    
         
            -
                  <fnorth Sync="TRUE">10000000.000000</fnorth>
         
     | 
| 
       1410 
     | 
    
         
            -
                  </transmer>
         
     | 
| 
       1411 
     | 
    
         
            -
                  </utm>
         
     | 
| 
       1412 
     | 
    
         
            -
                  </gridsys>
         
     | 
| 
       1413 
     | 
    
         
            -
                  </planar>
         
     | 
| 
       1414 
     | 
    
         
            -
                        <geodetic>
         
     | 
| 
       1415 
     | 
    
         
            -
                          <horizdn>D_WGS_1984</horizdn>
         
     | 
| 
       1416 
     | 
    
         
            -
                          <ellips>WGS_1984</ellips>
         
     | 
| 
       1417 
     | 
    
         
            -
                          <semiaxis>6378137.000000</semiaxis>
         
     | 
| 
       1418 
     | 
    
         
            -
                          <denflat>298.257224</denflat>
         
     | 
| 
       1419 
     | 
    
         
            -
                        </geodetic>
         
     | 
| 
       1420 
     | 
    
         
            -
                        <cordsysn>
         
     | 
| 
       1421 
     | 
    
         
            -
                  <geogcsn Sync="TRUE">GCS_WGS_1984</geogcsn>
         
     | 
| 
       1422 
     | 
    
         
            -
                  <projcsn Sync="TRUE">WGS_1984_UTM_Zone_17S</projcsn>
         
     | 
| 
       1423 
     | 
    
         
            -
                  </cordsysn>
         
     | 
| 
       1424 
     | 
    
         
            -
                  </horizsys>
         
     | 
| 
       1425 
     | 
    
         
            -
                    </spref>
         
     | 
| 
       1426 
     | 
    
         
            -
                    <eainfo>
         
     | 
| 
       1427 
     | 
    
         
            -
                      <detailed Name="Ecuador50KDrillingTower11">
         
     | 
| 
       1428 
     | 
    
         
            -
                        <enttyp>
         
     | 
| 
       1429 
     | 
    
         
            -
                          <enttypl>
         
     | 
| 
       1430 
     | 
    
         
            -
                  Ecuador50KDrillingTower11</enttypl>
         
     | 
| 
       1431 
     | 
    
         
            -
                          <enttypt Sync="TRUE">Feature Class</enttypt>
         
     | 
| 
       1432 
     | 
    
         
            -
                  <enttypc Sync="TRUE">1</enttypc>
         
     | 
| 
       1433 
     | 
    
         
            -
                  </enttyp>
         
     | 
| 
       1434 
     | 
    
         
            -
                        <attr>
         
     | 
| 
       1435 
     | 
    
         
            -
                          <attrlabl>FID</attrlabl>
         
     | 
| 
       1436 
     | 
    
         
            -
                          <attrdef>Internal feature number.</attrdef>
         
     | 
| 
       1437 
     | 
    
         
            -
                          <attrdefs>Environmental Systems Research Institute (Redlands, Calif.)</attrdefs>
         
     | 
| 
       1438 
     | 
    
         
            -
                          <attrdomv>
         
     | 
| 
       1439 
     | 
    
         
            -
                            <udom>Sequential unique whole numbers that are automatically generated.</udom>
         
     | 
| 
       1440 
     | 
    
         
            -
                          </attrdomv>
         
     | 
| 
       1441 
     | 
    
         
            -
                          <attalias Sync="TRUE">FID</attalias>
         
     | 
| 
       1442 
     | 
    
         
            -
                  <attrtype Sync="TRUE">OID</attrtype>
         
     | 
| 
       1443 
     | 
    
         
            -
                  <attwidth Sync="TRUE">4</attwidth>
         
     | 
| 
       1444 
     | 
    
         
            -
                  <atprecis Sync="TRUE">0</atprecis>
         
     | 
| 
       1445 
     | 
    
         
            -
                  <attscale Sync="TRUE">0</attscale>
         
     | 
| 
       1446 
     | 
    
         
            -
                  </attr>
         
     | 
| 
       1447 
     | 
    
         
            -
                        <attr>
         
     | 
| 
       1448 
     | 
    
         
            -
                          <attrlabl>Shape</attrlabl>
         
     | 
| 
       1449 
     | 
    
         
            -
                          <attrdef>Feature geometry.</attrdef>
         
     | 
| 
       1450 
     | 
    
         
            -
                          <attrdefs>Environmental Systems Research Institute (Redlands, Calif.)</attrdefs>
         
     | 
| 
       1451 
     | 
    
         
            -
                          <attrdomv>
         
     | 
| 
       1452 
     | 
    
         
            -
                            <udom>Coordinates defining the features.</udom>
         
     | 
| 
       1453 
     | 
    
         
            -
                          </attrdomv>
         
     | 
| 
       1454 
     | 
    
         
            -
                          <attalias Sync="TRUE">Shape</attalias>
         
     | 
| 
       1455 
     | 
    
         
            -
                  <attrtype Sync="TRUE">Geometry</attrtype>
         
     | 
| 
       1456 
     | 
    
         
            -
                  <attwidth Sync="TRUE">0</attwidth>
         
     | 
| 
       1457 
     | 
    
         
            -
                  <atprecis Sync="TRUE">0</atprecis>
         
     | 
| 
       1458 
     | 
    
         
            -
                  <attscale Sync="TRUE">0</attscale>
         
     | 
| 
       1459 
     | 
    
         
            -
                  </attr>
         
     | 
| 
       1460 
     | 
    
         
            -
                        <attr>
         
     | 
| 
       1461 
     | 
    
         
            -
                          <attrlabl>fcode</attrlabl>
         
     | 
| 
       1462 
     | 
    
         
            -
                          <attrdef>Feature class code</attrdef>
         
     | 
| 
       1463 
     | 
    
         
            -
                          <attrdefs>Tufts University. Geographic Information Systems Center</attrdefs>
         
     | 
| 
       1464 
     | 
    
         
            -
                          <attrdomv>
         
     | 
| 
       1465 
     | 
    
         
            -
                            <edom>
         
     | 
| 
       1466 
     | 
    
         
            -
                              <edomv>AA040</edomv>
         
     | 
| 
       1467 
     | 
    
         
            -
                              <edomvd>Vertical structure equipped for perforation purposes</edomvd>
         
     | 
| 
       1468 
     | 
    
         
            -
                              <edomvds>Instituto Geografico Militar (Ecuador)</edomvds>
         
     | 
| 
       1469 
     | 
    
         
            -
                            </edom>
         
     | 
| 
       1470 
     | 
    
         
            -
                          </attrdomv>
         
     | 
| 
       1471 
     | 
    
         
            -
                          <attalias Sync="TRUE">fcode</attalias>
         
     | 
| 
       1472 
     | 
    
         
            -
                  <attrtype Sync="TRUE">String</attrtype>
         
     | 
| 
       1473 
     | 
    
         
            -
                  <attwidth Sync="TRUE">5</attwidth>
         
     | 
| 
       1474 
     | 
    
         
            -
                  </attr>
         
     | 
| 
       1475 
     | 
    
         
            -
                        <attr>
         
     | 
| 
       1476 
     | 
    
         
            -
                          <attrlabl>descripcio</attrlabl>
         
     | 
| 
       1477 
     | 
    
         
            -
                          <attrdef>Description of the FCODE</attrdef>
         
     | 
| 
       1478 
     | 
    
         
            -
                          <attrdefs>Tufts University. Geographic Information Systems Center</attrdefs>
         
     | 
| 
       1479 
     | 
    
         
            -
                          <attalias Sync="TRUE">descripcio</attalias>
         
     | 
| 
       1480 
     | 
    
         
            -
                  <attrtype Sync="TRUE">String</attrtype>
         
     | 
| 
       1481 
     | 
    
         
            -
                  <attwidth Sync="TRUE">250</attwidth>
         
     | 
| 
       1482 
     | 
    
         
            -
                  </attr>
         
     | 
| 
       1483 
     | 
    
         
            -
                        <attr>
         
     | 
| 
       1484 
     | 
    
         
            -
                          <attrlabl>ppo</attrlabl>
         
     | 
| 
       1485 
     | 
    
         
            -
                          <attrdef>Category of product</attrdef>
         
     | 
| 
       1486 
     | 
    
         
            -
                          <attrdefs>Instituto Geografico Militar (Ecuador)</attrdefs>
         
     | 
| 
       1487 
     | 
    
         
            -
                          <attrdomv>
         
     | 
| 
       1488 
     | 
    
         
            -
                            <edom>
         
     | 
| 
       1489 
     | 
    
         
            -
                              <edomv>-1</edomv>
         
     | 
| 
       1490 
     | 
    
         
            -
                              <edomvd>No information is available</edomvd>
         
     | 
| 
       1491 
     | 
    
         
            -
                              <edomvds>Instituto Geografico Militar (Ecuador)</edomvds>
         
     | 
| 
       1492 
     | 
    
         
            -
                            </edom>
         
     | 
| 
       1493 
     | 
    
         
            -
                          </attrdomv>
         
     | 
| 
       1494 
     | 
    
         
            -
                          <attalias Sync="TRUE">ppo</attalias>
         
     | 
| 
       1495 
     | 
    
         
            -
                  <attrtype Sync="TRUE">Number</attrtype>
         
     | 
| 
       1496 
     | 
    
         
            -
                  <attwidth Sync="TRUE">4</attwidth>
         
     | 
| 
       1497 
     | 
    
         
            -
                  </attr>
         
     | 
| 
       1498 
     | 
    
         
            -
                        <attr>
         
     | 
| 
       1499 
     | 
    
         
            -
                          <attrlabl>ppo_desc</attrlabl>
         
     | 
| 
       1500 
     | 
    
         
            -
                          <attrdef>Description of the PPO code</attrdef>
         
     | 
| 
       1501 
     | 
    
         
            -
                          <attrdefs>Instituto Geografico Militar (Ecuador)</attrdefs>
         
     | 
| 
       1502 
     | 
    
         
            -
                          <attalias Sync="TRUE">ppo_desc</attalias>
         
     | 
| 
       1503 
     | 
    
         
            -
                  <attrtype Sync="TRUE">String</attrtype>
         
     | 
| 
       1504 
     | 
    
         
            -
                  <attwidth Sync="TRUE">80</attwidth>
         
     | 
| 
       1505 
     | 
    
         
            -
                  </attr>
         
     | 
| 
       1506 
     | 
    
         
            -
                        <attr>
         
     | 
| 
       1507 
     | 
    
         
            -
                          <attrlabl>txt</attrlabl>
         
     | 
| 
       1508 
     | 
    
         
            -
                          <attrdef>Further information about the tower</attrdef>
         
     | 
| 
       1509 
     | 
    
         
            -
                          <attrdefs>Instituto Geografico Militar (Ecuador)</attrdefs>
         
     | 
| 
       1510 
     | 
    
         
            -
                          <attalias Sync="TRUE">txt</attalias>
         
     | 
| 
       1511 
     | 
    
         
            -
                  <attrtype Sync="TRUE">String</attrtype>
         
     | 
| 
       1512 
     | 
    
         
            -
                  <attwidth Sync="TRUE">250</attwidth>
         
     | 
| 
       1513 
     | 
    
         
            -
                  </attr>
         
     | 
| 
       1514 
     | 
    
         
            -
                      </detailed>
         
     | 
| 
       1515 
     | 
    
         
            -
                    </eainfo>
         
     | 
| 
       1516 
     | 
    
         
            -
                    <distinfo>
         
     | 
| 
       1517 
     | 
    
         
            -
                      <distrib>
         
     | 
| 
       1518 
     | 
    
         
            -
                        <cntinfo>
         
     | 
| 
       1519 
     | 
    
         
            -
                          <cntorgp>
         
     | 
| 
       1520 
     | 
    
         
            -
                            <cntorg>Tufts University GIS Center</cntorg>
         
     | 
| 
       1521 
     | 
    
         
            -
                          </cntorgp>
         
     | 
| 
       1522 
     | 
    
         
            -
                          <cntpos>GIS Data Analyst</cntpos>
         
     | 
| 
       1523 
     | 
    
         
            -
                          <cntaddr>
         
     | 
| 
       1524 
     | 
    
         
            -
                            <addrtype>mailing and physical address</addrtype>
         
     | 
| 
       1525 
     | 
    
         
            -
                            <address>Academic Technology</address>
         
     | 
| 
       1526 
     | 
    
         
            -
                            <address>16 Dearborn Ave</address>
         
     | 
| 
       1527 
     | 
    
         
            -
                            <city>Somerville</city>
         
     | 
| 
       1528 
     | 
    
         
            -
                            <state>MA</state>
         
     | 
| 
       1529 
     | 
    
         
            -
                            <postal>02144</postal>
         
     | 
| 
       1530 
     | 
    
         
            -
                            <country>USA</country>
         
     | 
| 
       1531 
     | 
    
         
            -
                          </cntaddr>
         
     | 
| 
       1532 
     | 
    
         
            -
                          <cntvoice>617-627-3380</cntvoice>
         
     | 
| 
       1533 
     | 
    
         
            -
                          <cntemail>gis-support@elist.tufts.edu</cntemail>
         
     | 
| 
       1534 
     | 
    
         
            -
                          <hours>Monday-Friday, 9:00 AM-5:00 PM, EST-USA</hours>
         
     | 
| 
       1535 
     | 
    
         
            -
                        </cntinfo>
         
     | 
| 
       1536 
     | 
    
         
            -
                      </distrib>
         
     | 
| 
       1537 
     | 
    
         
            -
                      <resdesc>Online Dataset</resdesc>
         
     | 
| 
       1538 
     | 
    
         
            -
                      <stdorder>
         
     | 
| 
       1539 
     | 
    
         
            -
                        <digform>
         
     | 
| 
       1540 
     | 
    
         
            -
                          <digtinfo>
         
     | 
| 
       1541 
     | 
    
         
            -
                            <transize>13.102</transize>
         
     | 
| 
       1542 
     | 
    
         
            -
                            <dssize Sync="TRUE">0.000</dssize>
         
     | 
| 
       1543 
     | 
    
         
            -
                  </digtinfo>
         
     | 
| 
       1544 
     | 
    
         
            -
                        </digform>
         
     | 
| 
       1545 
     | 
    
         
            -
                      </stdorder>
         
     | 
| 
       1546 
     | 
    
         
            -
                    </distinfo>
         
     | 
| 
       1547 
     | 
    
         
            -
                    <metainfo>
         
     | 
| 
       1548 
     | 
    
         
            -
                      <metd>20130813</metd>
         
     | 
| 
       1549 
     | 
    
         
            -
                      <metc>
         
     | 
| 
       1550 
     | 
    
         
            -
                        <cntinfo>
         
     | 
| 
       1551 
     | 
    
         
            -
                          <cntorgp>
         
     | 
| 
       1552 
     | 
    
         
            -
                            <cntorg>Tufts University GIS Center</cntorg>
         
     | 
| 
       1553 
     | 
    
         
            -
                            <cntper>REQUIRED: The person responsible for the metadata information.</cntper>
         
     | 
| 
       1554 
     | 
    
         
            -
                          </cntorgp>
         
     | 
| 
       1555 
     | 
    
         
            -
                          <cntpos>GIS Data Analyst</cntpos>
         
     | 
| 
       1556 
     | 
    
         
            -
                          <cntaddr>
         
     | 
| 
       1557 
     | 
    
         
            -
                            <addrtype>mailing and physical address</addrtype>
         
     | 
| 
       1558 
     | 
    
         
            -
                            <address>Academic Technology</address>
         
     | 
| 
       1559 
     | 
    
         
            -
                            <address>16 Dearborn Ave</address>
         
     | 
| 
       1560 
     | 
    
         
            -
                            <city>Somerville</city>
         
     | 
| 
       1561 
     | 
    
         
            -
                            <state>MA</state>
         
     | 
| 
       1562 
     | 
    
         
            -
                            <postal>02144</postal>
         
     | 
| 
       1563 
     | 
    
         
            -
                            <country>USA</country>
         
     | 
| 
       1564 
     | 
    
         
            -
                          </cntaddr>
         
     | 
| 
       1565 
     | 
    
         
            -
                          <cntvoice>617-627-3380</cntvoice>
         
     | 
| 
       1566 
     | 
    
         
            -
                          <cntemail>gis-support@elist.tufts.edu</cntemail>
         
     | 
| 
       1567 
     | 
    
         
            -
                          <hours>Monday-Friday, 9:00 AM-5:00 PM, EST-USA</hours>
         
     | 
| 
       1568 
     | 
    
         
            -
                        </cntinfo>
         
     | 
| 
       1569 
     | 
    
         
            -
                      </metc>
         
     | 
| 
       1570 
     | 
    
         
            -
                      <metstdn>FGDC Content Standards for Digital Geospatial Metadata</metstdn>
         
     | 
| 
       1571 
     | 
    
         
            -
                      <metstdv>FGDC-STD-001-1998</metstdv>
         
     | 
| 
       1572 
     | 
    
         
            -
                      <mettc>local time</mettc>
         
     | 
| 
       1573 
     | 
    
         
            -
                      <metextns>
         
     | 
| 
       1574 
     | 
    
         
            -
                        <onlink>http://www.esri.com/metadata/esriprof80.html</onlink>
         
     | 
| 
       1575 
     | 
    
         
            -
                        <metprof>ESRI Metadata Profile</metprof>
         
     | 
| 
       1576 
     | 
    
         
            -
                      </metextns>
         
     | 
| 
       1577 
     | 
    
         
            -
                      <metextns>
         
     | 
| 
       1578 
     | 
    
         
            -
                        <onlink>http://www.esri.com/metadata/esriprof80.html</onlink>
         
     | 
| 
       1579 
     | 
    
         
            -
                        <metprof>ESRI Metadata Profile</metprof>
         
     | 
| 
       1580 
     | 
    
         
            -
                      </metextns>
         
     | 
| 
       1581 
     | 
    
         
            -
                      <metextns>
         
     | 
| 
       1582 
     | 
    
         
            -
                        <onlink>http://www.esri.com/metadata/esriprof80.html</onlink>
         
     | 
| 
       1583 
     | 
    
         
            -
                        <metprof>ESRI Metadata Profile</metprof>
         
     | 
| 
       1584 
     | 
    
         
            -
                      </metextns>
         
     | 
| 
       1585 
     | 
    
         
            -
                      <langmeta Sync="TRUE">en</langmeta>
         
     | 
| 
       1586 
     | 
    
         
            -
                  <metextns>
         
     | 
| 
       1587 
     | 
    
         
            -
                  <onlink Sync="TRUE">http://www.esri.com/metadata/esriprof80.html</onlink>
         
     | 
| 
       1588 
     | 
    
         
            -
                  <metprof Sync="TRUE">ESRI Metadata Profile</metprof>
         
     | 
| 
       1589 
     | 
    
         
            -
                  </metextns>
         
     | 
| 
       1590 
     | 
    
         
            -
                  </metainfo>
         
     | 
| 
       1591 
     | 
    
         
            -
                    <dataIdInfo>
         
     | 
| 
       1592 
     | 
    
         
            -
                  <envirDesc Sync="TRUE">Microsoft Windows Vista Version 6.1 (Build 7601) Service Pack 1; ESRI ArcCatalog 9.3.1.4000</envirDesc>
         
     | 
| 
       1593 
     | 
    
         
            -
                  <dataLang>
         
     | 
| 
       1594 
     | 
    
         
            -
                  <languageCode Sync="TRUE" value="en" />
         
     | 
| 
       1595 
     | 
    
         
            -
                  </dataLang>
         
     | 
| 
       1596 
     | 
    
         
            -
                  <idCitation>
         
     | 
| 
       1597 
     | 
    
         
            -
                  <resTitle Sync="TRUE">Ecuador50KDrillingTower11</resTitle>
         
     | 
| 
       1598 
     | 
    
         
            -
                  <presForm>
         
     | 
| 
       1599 
     | 
    
         
            -
                  <PresFormCd Sync="TRUE" value="005" />
         
     | 
| 
       1600 
     | 
    
         
            -
                  </presForm>
         
     | 
| 
       1601 
     | 
    
         
            -
                  </idCitation>
         
     | 
| 
       1602 
     | 
    
         
            -
                  <spatRpType>
         
     | 
| 
       1603 
     | 
    
         
            -
                  <SpatRepTypCd Sync="TRUE" value="001" />
         
     | 
| 
       1604 
     | 
    
         
            -
                  </spatRpType>
         
     | 
| 
       1605 
     | 
    
         
            -
                  <dataExt>
         
     | 
| 
       1606 
     | 
    
         
            -
                  <geoEle>
         
     | 
| 
       1607 
     | 
    
         
            -
                  <GeoBndBox esriExtentType="native">
         
     | 
| 
       1608 
     | 
    
         
            -
                  <westBL Sync="TRUE">621844.3882</westBL>
         
     | 
| 
       1609 
     | 
    
         
            -
                  <eastBL Sync="TRUE">621844.3882</eastBL>
         
     | 
| 
       1610 
     | 
    
         
            -
                  <northBL Sync="TRUE">9847689.6686</northBL>
         
     | 
| 
       1611 
     | 
    
         
            -
                  <southBL Sync="TRUE">9847689.6686</southBL>
         
     | 
| 
       1612 
     | 
    
         
            -
                  <exTypeCode Sync="TRUE">1</exTypeCode>
         
     | 
| 
       1613 
     | 
    
         
            -
                  </GeoBndBox>
         
     | 
| 
       1614 
     | 
    
         
            -
                  </geoEle>
         
     | 
| 
       1615 
     | 
    
         
            -
                  </dataExt>
         
     | 
| 
       1616 
     | 
    
         
            -
                  <geoBox esriExtentType="decdegrees">
         
     | 
| 
       1617 
     | 
    
         
            -
                  <westBL Sync="TRUE">-79.904768</westBL>
         
     | 
| 
       1618 
     | 
    
         
            -
                  <eastBL Sync="TRUE">-79.904768</eastBL>
         
     | 
| 
       1619 
     | 
    
         
            -
                  <northBL Sync="TRUE">-1.377743</northBL>
         
     | 
| 
       1620 
     | 
    
         
            -
                  <southBL Sync="TRUE">-1.377743</southBL>
         
     | 
| 
       1621 
     | 
    
         
            -
                  <exTypeCode Sync="TRUE">1</exTypeCode>
         
     | 
| 
       1622 
     | 
    
         
            -
                  </geoBox>
         
     | 
| 
       1623 
     | 
    
         
            -
                  </dataIdInfo>
         
     | 
| 
       1624 
     | 
    
         
            -
                  <mdLang>
         
     | 
| 
       1625 
     | 
    
         
            -
                  <languageCode Sync="TRUE" value="en" />
         
     | 
| 
       1626 
     | 
    
         
            -
                  </mdLang>
         
     | 
| 
       1627 
     | 
    
         
            -
                  <mdStanName Sync="TRUE">ISO 19115 Geographic Information - Metadata</mdStanName>
         
     | 
| 
       1628 
     | 
    
         
            -
                  <mdStanVer Sync="TRUE">DIS_ESRI1.0</mdStanVer>
         
     | 
| 
       1629 
     | 
    
         
            -
                  <mdChar>
         
     | 
| 
       1630 
     | 
    
         
            -
                  <CharSetCd Sync="TRUE" value="004" />
         
     | 
| 
       1631 
     | 
    
         
            -
                  </mdChar>
         
     | 
| 
       1632 
     | 
    
         
            -
                  <mdHrLv>
         
     | 
| 
       1633 
     | 
    
         
            -
                  <ScopeCd Sync="TRUE" value="005" />
         
     | 
| 
       1634 
     | 
    
         
            -
                  </mdHrLv>
         
     | 
| 
       1635 
     | 
    
         
            -
                  <mdHrLvName Sync="TRUE">dataset</mdHrLvName>
         
     | 
| 
       1636 
     | 
    
         
            -
                  <distInfo>
         
     | 
| 
       1637 
     | 
    
         
            -
                  <distributor>
         
     | 
| 
       1638 
     | 
    
         
            -
                  <distorTran>
         
     | 
| 
       1639 
     | 
    
         
            -
                  <onLineSrc>
         
     | 
| 
       1640 
     | 
    
         
            -
                  <orDesc Sync="TRUE">002</orDesc>
         
     | 
| 
       1641 
     | 
    
         
            -
                  <linkage Sync="TRUE">file://\\rstore2\gisprojects$\GIS_Center_Projects\EnterpriseGIS\Layers\Ecuador\IGM - Instituto Geografico Militar\Base Level Infrastructure\torre_perforacion_p\Ecuador50KDrillingTower11.shp</linkage>
         
     | 
| 
       1642 
     | 
    
         
            -
                  <protocol Sync="TRUE">Local Area Network</protocol>
         
     | 
| 
       1643 
     | 
    
         
            -
                  </onLineSrc>
         
     | 
| 
       1644 
     | 
    
         
            -
                  <transSize Sync="TRUE">0.000</transSize>
         
     | 
| 
       1645 
     | 
    
         
            -
                  </distorTran>
         
     | 
| 
       1646 
     | 
    
         
            -
                  <distorFormat>
         
     | 
| 
       1647 
     | 
    
         
            -
                  <formatName Sync="TRUE">Shapefile</formatName>
         
     | 
| 
       1648 
     | 
    
         
            -
                  </distorFormat>
         
     | 
| 
       1649 
     | 
    
         
            -
                  </distributor>
         
     | 
| 
       1650 
     | 
    
         
            -
                  </distInfo>
         
     | 
| 
       1651 
     | 
    
         
            -
                  <refSysInfo>
         
     | 
| 
       1652 
     | 
    
         
            -
                  <RefSystem>
         
     | 
| 
       1653 
     | 
    
         
            -
                  <refSysID>
         
     | 
| 
       1654 
     | 
    
         
            -
                  <identCode Sync="TRUE">WGS_1984_UTM_Zone_17S</identCode>
         
     | 
| 
       1655 
     | 
    
         
            -
                  </refSysID>
         
     | 
| 
       1656 
     | 
    
         
            -
                  </RefSystem>
         
     | 
| 
       1657 
     | 
    
         
            -
                  </refSysInfo>
         
     | 
| 
       1658 
     | 
    
         
            -
                  <spatRepInfo>
         
     | 
| 
       1659 
     | 
    
         
            -
                  <VectSpatRep>
         
     | 
| 
       1660 
     | 
    
         
            -
                  <topLvl>
         
     | 
| 
       1661 
     | 
    
         
            -
                  <TopoLevCd Sync="TRUE" value="001" />
         
     | 
| 
       1662 
     | 
    
         
            -
                  </topLvl>
         
     | 
| 
       1663 
     | 
    
         
            -
                  <geometObjs Name="Ecuador50KDrillingTower11">
         
     | 
| 
       1664 
     | 
    
         
            -
                  <geoObjTyp>
         
     | 
| 
       1665 
     | 
    
         
            -
                  <GeoObjTypCd Sync="TRUE" value="004" />
         
     | 
| 
       1666 
     | 
    
         
            -
                  </geoObjTyp>
         
     | 
| 
       1667 
     | 
    
         
            -
                  <geoObjCnt Sync="TRUE">1</geoObjCnt>
         
     | 
| 
       1668 
     | 
    
         
            -
                  </geometObjs>
         
     | 
| 
       1669 
     | 
    
         
            -
                  </VectSpatRep>
         
     | 
| 
       1670 
     | 
    
         
            -
                  </spatRepInfo>
         
     | 
| 
       1671 
     | 
    
         
            -
                  <Esri>
         
     | 
| 
       1672 
     | 
    
         
            -
                  <SyncDate>20140520</SyncDate>
         
     | 
| 
       1673 
     | 
    
         
            -
                  <SyncTime>16090500</SyncTime>
         
     | 
| 
       1674 
     | 
    
         
            -
                  <ModDate>20140520</ModDate>
         
     | 
| 
       1675 
     | 
    
         
            -
                  <ModTime>16090500</ModTime>
         
     | 
| 
       1676 
     | 
    
         
            -
                  </Esri>
         
     | 
| 
       1677 
     | 
    
         
            -
                  <mdDateSt Sync="TRUE">20140520</mdDateSt>
         
     | 
| 
       1678 
     | 
    
         
            -
                  </metadata>
         
     | 
| 
       1679 
     | 
    
         
            -
                xml
         
     | 
| 
      
 28 
     | 
    
         
            +
              def princeton_fgdc
         
     | 
| 
      
 29 
     | 
    
         
            +
                File.read(File.join(File.dirname(__FILE__), './docs/princeton_fgdc.xml'))
         
     | 
| 
       1680 
30 
     | 
    
         
             
              end
         
     | 
| 
       1681 
31 
     | 
    
         
             
            end
         
     |