Add USGS maps to Pluto and Charon

This commit is contained in:
Alexander Bock
2018-06-28 15:45:16 -04:00
parent 7160fe9a98
commit 3aa3bda940
3 changed files with 19 additions and 50 deletions
@@ -5,13 +5,6 @@ asset.request('./trail')
local textures = asset.syncedResource({
Name = "Charon Textures",
Type = "HttpSynchronization",
Identifier = "charon_textures",
Version = 3
})
local Charon = {
Identifier = "Charon",
Parent = transforms.PlutoBarycenter.Identifier,
@@ -39,19 +32,10 @@ local Charon = {
Layers = {
ColorLayers = {
{
Identifier = "Greyscale",
Name = "Black & White",
FilePath = textures .. "/NH_Charon_mosaic.png",
}
},
HeightLayers = {
{
Identifier = "DTM",
Name = "DTM",
FilePath = textures .. "/NH_Charon_DTM.png",
Enabled = true,
Settings = { Multiplier = 20.0 },
TilePixelSize = 64
Identifier = "Greyscale_USGS",
Name = "Black & White [USGS]",
FilePath = "WMS:https://planetarymaps.usgs.gov/cgi-bin/mapserv?map=/maps/pluto/charon_simp_cyl.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=NEWHORIZONS_CHARON_MOSAIC&SRS=EPSG:4326&BBOX=-180,-90.0003,359.972,90",
Enabled = true
}
}
}
@@ -5,13 +5,6 @@ asset.request('./trail')
local textures = asset.syncedResource({
Name = "Pluto Textures",
Type = "HttpSynchronization",
Identifier = "pluto_textures",
Version = 5
})
local Pluto = {
Identifier = "Pluto",
Parent = transforms.PlutoBarycenter.Identifier,
@@ -39,30 +32,10 @@ local Pluto = {
Layers = {
ColorLayers = {
{
Identifier = "Greyscale",
Name = "Black & White",
FilePath = textures .. "/NH_Pluto_mosaic_16384.png",
Identifier = "Greyscale_USGS",
Name = "Black & White [USGS]",
FilePath = "WMS:https://planetarymaps.usgs.gov/cgi-bin/mapserv?map=/maps/pluto/pluto_simp_cyl.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=NEWHORIZONS_PLUTO_MOSAIC&SRS=EPSG:4326&BBOX=-180,-90,360,90",
Enabled = true
},
{
Identifier = "Color",
Name = "Color",
FilePath = textures .. "/pmap_cyl_k201.jpg"
},
{
Identifier = "Hubble",
Name = "Hubble",
FilePath = textures .. "/pluto.png"
}
},
HeightLayers = {
{
Identifier = "DTM",
Name = "DTM",
FilePath = textures .. "/NH_Pluto_DTM_16384.png",
Enabled = true,
Settings = { Multiplier = 20.0 },
TilePixelSize = 64
}
}
}
+12
View File
@@ -32,6 +32,18 @@ return {
URL = "https://planetarymaps.usgs.gov/cgi-bin/mapserv?map=/maps/mars/deimos_simp_cyl.map&service=WMS&request=GetCapabilities"
},
},
Pluto = {
{
Name = "USGS Pluto",
URL = "https://planetarymaps.usgs.gov/cgi-bin/mapserv?map=/maps/pluto/pluto_simp_cyl.map&service=WMS&request=GetCapabilities"
}
},
Charon = {
{
Name = "USGS Charon",
URL = "https://planetarymaps.usgs.gov/cgi-bin/mapserv?map=/maps/pluto/charon_simp_cyl.map&service=WMS&request=GetCapabilities"
}
}
}