geosolutions-it / geonode-rndt

Geonode-RNDT is a Django App to let GeoNode be able to expose the metadata compliant to the RNDT standard
BSD 2-Clause "Simplified" License
1 stars 1 forks source link

Thesauri: metadata template #14

Open etj opened 3 years ago

etj commented 3 years ago

The metadata template should be updated in order to add all the thesauri and keywords in the metadata document.

etj commented 3 years ago

This is a block for keywords with thesaurus

<!-- LOOP on used thesauri -->
<gmd:descriptiveKeywords>
   <gmd:MD_Keywords>
      <!-- LOOP on keywords of thesaurus -->
      <gmd:keyword>
         <gco:CharacterString>keyword from thesaurus...</gco:CharacterString>
      </gmd:keyword>
      <!-- END LOOP keyword -->
      <gmd:thesaurusName>
         <gmd:CI_Citation>
            <gmd:title>
               <gco:CharacterString>Thesaurus title (e.g. "INSPIRE priority data set")</gco:CharacterString>
            </gmd:title>
            <gmd:date>
               <gmd:CI_Date>
                  <gmd:date>
                     <gco:Date>2018-04-04</gco:Date> <!-- thesaurus publication date -->
                  </gmd:date>
                  <gmd:dateType>
                     <gmd:CI_DateTypeCode
                           codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode"
                           codeListValue="publication">pubblicazione</gmd:CI_DateTypeCode>
                  </gmd:dateType>
               </gmd:CI_Date>
            </gmd:date>
         </gmd:CI_Citation>
      </gmd:thesaurusName>
   </gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<!-- END LOOP thesauri -->