Update TilePixelSizes to temporarily address #2472

This commit is contained in:
Alexander Bock
2023-06-14 20:04:08 +02:00
parent d1094c211e
commit 475f3c63c2
7 changed files with 11 additions and 6 deletions

View File

@@ -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",

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -245,7 +245,7 @@ openspace.globebrowsing.parseInfoFile = function (file)
Name = name,
Description = Description or "",
FilePath = dir .. '/' .. HeightFile,
TilePixelSize = 512
TilePixelSize = 65
}
end