commonMain.earth.worldwind.ogc.Wcs201ElevationSourceFactory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind-jvm Show documentation
Show all versions of worldwind-jvm Show documentation
The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.
The newest version!
package earth.worldwind.ogc
import com.eygraber.uri.Uri
import earth.worldwind.geom.TileMatrix
import earth.worldwind.globe.elevation.ElevationSource
import earth.worldwind.globe.elevation.ElevationSourceFactory
open class Wcs201ElevationSourceFactory(
/**
* The WCS service address use to build Get Coverage URLs.
*/
protected val serviceAddress: String,
/**
* The coverage name of the desired WCS coverage.
*/
protected val coverageName: String,
/**
* Required WCS source output format
*/
protected val outputFormat: String,
/**
* Axis labels from coverage description
*/
protected val axisLabels: List = listOf("Lat", "Long"),
/**
* The coordinate reference system to use in Get Coverage URLs. Defaults to EPSG:4326.
*/
protected val coordinateSystem: String = "EPSG:4326"
): ElevationSourceFactory {
override val contentType = "WCS 2.0.1"
override fun createElevationSource(tileMatrix: TileMatrix, row: Int, column: Int): ElevationSource {
val urlString = urlForTile(tileMatrix, row, column)
return ElevationSource.fromUrlString(urlString)
}
protected open fun urlForTile(tileMatrix: TileMatrix, row: Int, col: Int): String {
val sector = tileMatrix.tileSector(row, col)
return Uri.parse(serviceAddress).buildUpon()
.appendQueryParameter("VERSION", "2.0.1")
.appendQueryParameter("SERVICE", "WCS")
.appendQueryParameter("REQUEST", "GetCoverage")
.appendQueryParameter("COVERAGEID", coverageName)
.appendQueryParameter("OUTPUTCRS", coordinateSystem)
.appendQueryParameter("FORMAT", outputFormat)
.appendQueryParameter("SUBSET", sector.run { "${axisLabels[0]}(${minLatitude.inDegrees},${maxLatitude.inDegrees})" })
.appendQueryParameter("SUBSET", sector.run { "${axisLabels[1]}(${minLongitude.inDegrees},${maxLongitude.inDegrees})" })
.appendQueryParameter("SCALESIZE", tileMatrix.run { "${axisLabels[1]}($tileWidth),${axisLabels[0]}($tileHeight)" })
.appendQueryParameter("OVERVIEWPOLICY", "NEAREST")
.build().toString()
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy