Add WMS for Enceladus

This commit is contained in:
Alexander Bock
2018-11-20 19:58:39 -05:00
parent d37cfa4f18
commit d9eb174f27
2 changed files with 29 additions and 1 deletions
@@ -12,6 +12,8 @@ local textures = asset.syncedResource({
Version = 1
})
local mapServiceConfigsPath = asset.localResource("map_service_configs")
local Enceladus = {
Identifier = "Enceladus",
Parent = transforms.SaturnBarycenter.Identifier,
@@ -34,10 +36,16 @@ local Enceladus = {
SegmentsPerPatch = 64,
Layers = {
ColorLayers = {
{
Identifier = "Global_Mosaic_100m_HPF",
Name = "Cassini Global Mosaic 100m HPF",
FilePath = mapServiceConfigsPath .. "/Cassini_ISS_Global_Mosaic_100m_HPF.wms",
Enabled = true,
},
{
Identifier = "Texture",
FilePath = textures .. "/enceladus.jpg",
Enabled = true
}
}
}
@@ -0,0 +1,20 @@
<GDAL_WMS>
<Service name="TMS">
<ServerUrl>http://wms.itn.liu.se/Enceladus/Cassini_ISS_Global_Mosaic_100m_HPF/tile/${z}/${y}/${x}</ServerUrl>
</Service>
<DataWindow>
<UpperLeftX>-180.0</UpperLeftX>
<UpperLeftY>90.0</UpperLeftY>
<LowerRightX>180.0</LowerRightX>
<LowerRightY>-90.0</LowerRightY>
<SizeX>15840</SizeX>
<SizeY>7920</SizeY>
<TileLevel>6</TileLevel>
<YOrigin>top</YOrigin>
</DataWindow>
<Projection>EPSG:4326</Projection>
<BlockSizeX>512</BlockSizeX>
<BlockSizeY>512</BlockSizeY>
<BandsCount>1</BandsCount>
<MaxConnections>10</MaxConnections>
</GDAL_WMS>