mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-03 18:19:38 -06:00
Update TilePixelSizes to temporarily address #2472
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
local moon = asset.require("scene/solarsystem/planets/earth/moon/moon")
|
||||
-- This is technically not necessary, but we need to ensure that the default layers load
|
||||
-- first before we add the layers from this assets or else the default layers might be
|
||||
-- initialized later, causing them to appear **after** these layers
|
||||
asset.require("scene/solarsystem/planets/earth/moon/default_layers")
|
||||
|
||||
|
||||
local heightmaps = asset.syncedResource({
|
||||
Name = "Apollo Globebrowsing Heightmaps",
|
||||
|
||||
@@ -7,7 +7,7 @@ local Layer = {
|
||||
Name = "Terrain tileset",
|
||||
Enabled = asset.enabled,
|
||||
FilePath = asset.localResource("terrain_tileset.wms"),
|
||||
TilePixelSize = 512,
|
||||
TilePixelSize = 129,
|
||||
Description = [[This globe layer presents elevation data at approximately 90m or 1km
|
||||
per pixel resolution for the world. The elevation data includes 90m Shuttle Radar
|
||||
Topography Mission (SRTM) elevation data from NASA and National
|
||||
|
||||
@@ -7,7 +7,7 @@ local Layer = {
|
||||
Name = "HiRISE Local Set DEM",
|
||||
Enabled = asset.enabled,
|
||||
FilePath = asset.localResource("hirisels.wms"),
|
||||
TilePixelSize = 512,
|
||||
TilePixelSize = 129,
|
||||
Description = [[HiRISE (High Resolution Imaging Science Experiment) is the most
|
||||
powerful camera ever sent to another planet, one of six instruments onboard the
|
||||
Mars Reconnaissance Orbiter. We launched in 2005, arrived at Mars in 2006 and have
|
||||
|
||||
@@ -7,7 +7,7 @@ local Layer = {
|
||||
Name = "HRSC MOLA Blended DEM Global 200m v2",
|
||||
Enabled = asset.enabled,
|
||||
FilePath = asset.localResource("mdem200m.wms"),
|
||||
TilePixelSize = 513,
|
||||
TilePixelSize = 129,
|
||||
Description = [[Blend of data derived from the Mars Orbiter Laser Altimeter
|
||||
(MOLA, an instrument aboard NASA's Mars Global Surveyor spacecraft), and data derived
|
||||
from the High-Resolution Stereo Camera (HRSC, an instrument aboard the European Space
|
||||
|
||||
@@ -7,7 +7,7 @@ local Layer = {
|
||||
Name = "Magellan Elevation [New York]",
|
||||
Enabled = asset.enabled,
|
||||
FilePath = asset.localResource("magellan_newyork.wms"),
|
||||
TilePixelSize = 256,
|
||||
TilePixelSize = 129,
|
||||
Settings = {
|
||||
Gamma = 1.72,
|
||||
Multiplier = 1.1
|
||||
|
||||
@@ -7,7 +7,7 @@ local Layer = {
|
||||
Name = "Magellan Elevation [Utah]",
|
||||
Enabled = asset.enabled,
|
||||
FilePath = asset.localResource("magellan_utah.wms"),
|
||||
TilePixelSize = 256,
|
||||
TilePixelSize = 129,
|
||||
Settings = {
|
||||
Gamma = 1.72,
|
||||
Multiplier = 1.1
|
||||
|
||||
@@ -245,7 +245,7 @@ openspace.globebrowsing.parseInfoFile = function (file)
|
||||
Name = name,
|
||||
Description = Description or "",
|
||||
FilePath = dir .. '/' .. HeightFile,
|
||||
TilePixelSize = 512
|
||||
TilePixelSize = 65
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user