Interface FeatureCatalogueDescription

    • Method Detail

      • isCompliant

        @UML(identifier="complianceCode",
             obligation=OPTIONAL,
             specification=ISO_19115)
        default Boolean isCompliant()
        Indication of whether or not the cited feature catalogue complies with ISO 19110. This value is optional, and therefore may be null.
        Returns:
        whether or not the cited feature catalogue complies with ISO 19110, or null.
      • getLocalesAndCharsets

        @UML(identifier="locale",
             obligation=OPTIONAL,
             specification=ISO_19115)
        default Map<Locale,​Charset> getLocalesAndCharsets()
        Language(s) and character set(s) used within the catalogue. Note that contrarily to the PT_Locale object defined by ISO 19115:2014, the java.util.Locale object does not contain character encoding information. The character set information is stored in separated objects, associated to locales through entries in the map.

        XML representation

        XML documents shall format languages using the ISO 639-2 language code as returned by Locale.getISO3Language(). Character sets shall be referenced by name from the IANA Character Set register.
        Returns:
        language(s) and character set(s) used within the catalogue.
        Since:
        3.1
        See Also:
        DataIdentification.getLocalesAndCharsets(), Metadata.getLocalesAndCharsets()
        Departure from OGC/ISO specification:
        GeoAPI replaces ISO 19115:2014 LanguageCode, CountryCode and MD_CharacterSetCode code lists by equivalent objects from the standard Java library. See org.opengis.metadata.Metadata#getLocalesAndCharsets() for more information.
      • isIncludedWithDataset

        @UML(identifier="includedWithDataset",
             obligation=OPTIONAL,
             specification=ISO_19115)
        default boolean isIncludedWithDataset()
        Indication of whether or not the feature catalogue is included with the resource.
        Returns:
        whether or not the feature catalogue is included with the resource.
      • getFeatureTypeInfo

        @UML(identifier="featureTypes",
             obligation=OPTIONAL,
             specification=ISO_19115)
        default Collection<? extends FeatureTypeInfo> getFeatureTypeInfo()
        Subset of feature types from cited feature catalogue occurring in resource and count of feature instances.
        Returns:
        subset of feature types occurring in resource.
        Since:
        3.1
        Departure from OGC/ISO specification:
        Renamed from "featureTypes" to "featureTypeInfo" for the following reasons:
        1. Avoid name collision with the ISO 19115:2003 definition of "featureTypes".
        2. Avoid confusion between FeatureTypeInfo and org.opengis.feature.FeatureType. A getFeatureTypes() method name would suggest that the collection contains the later.
      • getFeatureCatalogueCitations

        @UML(identifier="featureCatalogueCitation",
             obligation=CONDITIONAL,
             specification=ISO_19115)
        Collection<? extends Citation> getFeatureCatalogueCitations()
        Complete bibliographic reference to one or more external feature catalogues.
        Returns:
        bibliographic reference to one or more external feature catalogues.
        Condition:
        Mandatory if the feature catalogue is not included with resource and FeatureCatalogue is not provided.