Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

As mentioned above, the steps outlined in this article require the use of the MMT to update your collection's metadata record. If you have not yet transitioned to using the MMT, the examples below are provided for which fields needs to be updated in both DIF10 and ECHO , ECHO, and ISO 19115-2 (MENDS) formats.

Code Block
titleDIF10
<Multimedia_Sample>
	<URL>https://example.url/file.png</URL>
	<Caption>Short Caption</Caption>
	<Description>Brief description of file</Description>
</Multimedia_Sample>
Code Block
titleECHO
<AssociatedBrowseImageUrls>
	<ProviderBrowseUrl>
		<URL>https://example.url/file.png</URL>
		<Description>Brief description of file</Description>
	</ProviderBrowseUrl>
</AssociatedBrowseImageUrls>

 

In the ISO example you can remove the XML comments

Code Block
titleISO 19115-2 MENDS/SMAP
...
    <gmd:identificationInfo>
        <gmd:MD_DataIdentification>
            <!-- Show a collection ICON on EDSC -->
            <gmd:graphicOverview>
                <gmd:MD_BrowseGraphic>
                    <gmd:fileName>
                        <gmx:FileName src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/SNice.svg/110px-SNice.svg.png">https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/SNice.svg/110px-SNice.svg.png</gmx:FileName>
                        <!--
                        The former is preferred, but this works.
                        <gco:CharacterString>https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/SNice.svg/110px-SNice.svg.png</gco:CharacterString>
                        -->
                   </gmd:fileName>
                    <!-- If URLContentType does not exist the default is VisualizationURL 
                         If Type: doesn't exist the default is GET RELATED VISUALIZATION
                         if Subtype: doesn't exist the default is nothing 
                         Currently Order is important. -->
                    <gmd:fileDescription>
                        <gco:CharacterString>Description: This is a test url to demonstrate how to get a collection ICON on to EDSC URLContentType: VisualizationURL Type: GET RELATED VISUALIZATION</gco:CharacterString>
                    </gmd:fileDescription>
                </gmd:MD_BrowseGraphic>
            </gmd:graphicOverview>
Info

If the thumbnail is not present upon refresh, please use the feedback module (by clicking on the bullhorn icon at the top of the Earthdata Search UI) to alert the Earthdata Search team.

...