All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.earth.worldwind.ogc.wcs.Wcs201CoverageDescriptions.kt Maven / Gradle / Ivy

Go to download

The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.

There is a newer version: 1.6.2
Show newest version
package earth.worldwind.ogc.wcs

import kotlinx.serialization.Serializable
import nl.adaptivity.xmlutil.serialization.XmlSerialName

@Serializable
@XmlSerialName("CoverageDescriptions", WCS20_NAMESPACE, WCS20_PREFIX)
data class Wcs201CoverageDescriptions(
    val coverageDescriptions: List = emptyList()
) {
    fun getCoverageDescription(identifier: String) = coverageDescriptions.firstOrNull {
        coverageDescription -> coverageDescription.id == identifier
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy