mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-06 11:29:55 -05:00
Remove whitespaces at the end of files, ' and - characters
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@ Jonas Strandstedt
|
||||
Michal Marcinkowski
|
||||
Joakim Kilby
|
||||
Lovisa Hassler
|
||||
Mikael Petterson
|
||||
Mikael Petterson
|
||||
Erik Sundén
|
||||
Stefan Lindblad
|
||||
Corrie Roe
|
||||
|
||||
Vendored
+9
-9
@@ -16,7 +16,7 @@ if (env.CHANGE_BRANCH) {
|
||||
def readDir() {
|
||||
def dirsl = [];
|
||||
new File("${workspace}").eachDir() {
|
||||
dirs -> println dirs.getName()
|
||||
dirs -> println dirs.getName()
|
||||
if (!dirs.getName().startsWith('.')) {
|
||||
dirsl.add(dirs.getName());
|
||||
}
|
||||
@@ -27,7 +27,7 @@ def readDir() {
|
||||
def moduleCMakeFlags() {
|
||||
def modules = [];
|
||||
// using new File doesn't work as it is not allowed in the sandbox
|
||||
|
||||
|
||||
if (isUnix()) {
|
||||
modules = sh(returnStdout: true, script: 'ls -d modules/*').trim().split('\n');
|
||||
};
|
||||
@@ -61,8 +61,8 @@ parallel tools: {
|
||||
recordIssues(
|
||||
id: 'tools-cppcheck',
|
||||
tool: cppCheck(pattern: 'build/cppcheck.xml')
|
||||
)
|
||||
}
|
||||
)
|
||||
}
|
||||
cleanWs()
|
||||
} // node('tools')
|
||||
},
|
||||
@@ -101,7 +101,7 @@ linux_gcc_make: {
|
||||
testHelper.runUnitTests('bin/GhoulTest');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
stage('linux-gcc-make/test-openspace') {
|
||||
timeout(time: 2, unit: 'MINUTES') {
|
||||
testHelper.runUnitTests('bin/OpenSpaceTest');
|
||||
@@ -264,7 +264,7 @@ windows_msvc: {
|
||||
testHelper.runUnitTests('bin\\Debug\\codegentest');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
stage('windows-msvc/test-sgct') {
|
||||
timeout(time: 2, unit: 'MINUTES') {
|
||||
testHelper.runUnitTests('bin\\Debug\\SGCTTest');
|
||||
@@ -282,7 +282,7 @@ windows_msvc: {
|
||||
testHelper.runUnitTests('bin\\Debug\\OpenSpaceTest');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
cleanWs()
|
||||
} // node('windows')
|
||||
}
|
||||
@@ -343,7 +343,7 @@ macos_make: {
|
||||
testHelper.runUnitTests('bin/Debug/OpenSpaceTest');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
cleanWs()
|
||||
} // node('macos')
|
||||
}
|
||||
@@ -384,7 +384,7 @@ macos_xcode: {
|
||||
testHelper.runUnitTests('bin/Debug/OpenSpaceTest');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
cleanWs()
|
||||
} // node('macos')
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ local list = openspace.getProperty("Scene." .. node .. ".Renderable.Layers.Night
|
||||
if (#list > 0) then
|
||||
openspace.setPropertyValue(list[1], true)
|
||||
else
|
||||
openspace.setPropertyValueSingle("Scene." .. node .. ".Renderable.PerformShading", true)
|
||||
openspace.setPropertyValueSingle("Scene." .. node .. ".Renderable.PerformShading", true)
|
||||
end
|
||||
if openspace.hasSceneGraphNode(node .. "Atmosphere") then
|
||||
openspace.setPropertyValueSingle("Scene." .. node .. "Atmosphere.Renderable.SunFollowingCamera", false)
|
||||
|
||||
@@ -8,14 +8,14 @@ local minormoons_on = {
|
||||
local moons = openspace.getProperty('{moon_minor}.Renderable.Enabled');
|
||||
local moons_fade = openspace.getProperty('{moon_minor}.Renderable.Fade');
|
||||
|
||||
for i, v in pairs(trails_fade) do
|
||||
for i, v in pairs(trails_fade) do
|
||||
openspace.setPropertyValueSingle(trails[i], true)
|
||||
openspace.setPropertyValueSingle(v, 1, 2, 'Linear')
|
||||
openspace.setPropertyValueSingle(v, 1, 2, 'Linear')
|
||||
end
|
||||
|
||||
for i, v in pairs(moons_fade) do
|
||||
for i, v in pairs(moons_fade) do
|
||||
openspace.setPropertyValueSingle(moons[i], true)
|
||||
openspace.setPropertyValueSingle(v, 1, 2, 'Linear')
|
||||
openspace.setPropertyValueSingle(v, 1, 2, 'Linear')
|
||||
end
|
||||
]],
|
||||
Documentation = "Turn ON minor moons and their trails for all planets in the solar system",
|
||||
@@ -33,12 +33,12 @@ local minormoons_off = {
|
||||
local moons = openspace.getProperty('{moon_minor}.Renderable.Enabled');
|
||||
local moons_fade = openspace.getProperty('{moon_minor}.Renderable.Fade');
|
||||
|
||||
for i, v in pairs(trails_fade) do
|
||||
openspace.setPropertyValueSingle(v, 0, 2, 'Linear', "openspace.setPropertyValueSingle('" .. trails[i] .. "', false)" )
|
||||
for i, v in pairs(trails_fade) do
|
||||
openspace.setPropertyValueSingle(v, 0, 2, 'Linear', "openspace.setPropertyValueSingle('" .. trails[i] .. "', false)" )
|
||||
end
|
||||
|
||||
for i, v in pairs(moons_fade) do
|
||||
openspace.setPropertyValueSingle(v, 0, 2, 'Linear', "openspace.setPropertyValueSingle('" .. moons[i] .. "', false)" )
|
||||
openspace.setPropertyValueSingle(v, 0, 2, 'Linear', "openspace.setPropertyValueSingle('" .. moons[i] .. "', false)" )
|
||||
end
|
||||
]],
|
||||
Documentation = "Turn OFF minor moons and their trails for all planets in the solar system",
|
||||
|
||||
@@ -2,9 +2,9 @@ local toggle_minormoon_trails = {
|
||||
Identifier = "os_default.toggle_minormoon_trails",
|
||||
Name = "Toggle Minor Moon Trails",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{moonTrail_minor}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{moonTrail_minor}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggle on/off minor moon trails for all planets in the solar system",
|
||||
|
||||
@@ -23,7 +23,7 @@ local vrt_folders = {
|
||||
-- if areas overlap (for example CTX and HiRISE) and CTX is specified *after* HiRISE,
|
||||
-- CTX will stomp over the HiRISE.
|
||||
|
||||
-- tl;dr: Specify CTX folders first, then HiRISE
|
||||
-- tl;dr: Specify CTX folders first, then HiRISE
|
||||
-- example: "C:/OpenSpace/GlobeBrowsingData/Mars/CTX"
|
||||
|
||||
-- We recommend using this folder for CTX
|
||||
|
||||
@@ -19,7 +19,7 @@ local toggle_sun = {
|
||||
openspace.setPropertyValueSingle("Scene.Sun.Renderable.Fade", 0.0, 1.0)
|
||||
end
|
||||
]],
|
||||
Documentation = [[Toggles the visibility of the Sun glare and the Sun globe when the
|
||||
Documentation = [[Toggles the visibility of the Sun glare and the Sun globe when the
|
||||
camera is approaching either so that from far away the Sun Glare is rendered and when
|
||||
close up, the globe is rendered instead]],
|
||||
GuiPath = "/Solar System/Sun",
|
||||
|
||||
@@ -191,7 +191,7 @@ asset.meta = {
|
||||
Version = "1.1",
|
||||
Description = [[Select Star Orbital paths that delineate their trajectory around the
|
||||
Milky Way over 1 billion years into the future. Included: Sun, Barnards, Kapteyns,
|
||||
Lacaille 9352, LSR1826+3014, LSRJ0822+1700, PM_J13420-3415. <br><br> Data
|
||||
Lacaille 9352, LSR1826+3014, LSRJ0822+1700, PM_J13420-3415. <br><br> Data
|
||||
Reference: Sebastien Lepine (AMNH)]],
|
||||
Author = "Brian Abbott (AMNH)",
|
||||
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
|
||||
|
||||
@@ -48,7 +48,7 @@ asset.export(object)
|
||||
asset.meta = {
|
||||
Name = "MilkyWay Galaxy (ESO)",
|
||||
Version = "1.0",
|
||||
Description = [[This asset contains an alternate to the Digital Universe image for the
|
||||
Description = [[This asset contains an alternate to the Digital Universe image for the
|
||||
Milky Way from ESO]],
|
||||
Author = "ESO/S. Brunier",
|
||||
URL = "https://www.eso.org/public/usa/images/eso0932a/",
|
||||
|
||||
@@ -36,16 +36,16 @@ local OrionClusterStars = {
|
||||
Path = "/Milky Way/Orion",
|
||||
Description = [[In order to have an accurate depiction of the Orion nebula, we
|
||||
need to include the star cluster that was birthed from it. We turned to a study of the
|
||||
cluster's stellar population by Lynne Hillenbrand, who was working at the University of
|
||||
California, Berkeley at the time. The catalog from her paper contains more than 1500
|
||||
stars, about half the stars in the actual cluster. The cluster is very crowded, with a
|
||||
peak density of 10000 stars per cubic parsec over a wide range of masses from a tenth the
|
||||
sun's mass up to 50 times its mass. We were presented with one problem: there are no
|
||||
distances. For the stellar distances, we needed to deduce them by statistical methods.
|
||||
Knowing the size of the cluster and approximating the shape to be roughly spherical, we
|
||||
placed each star along a line of sight through this imaginary sphere centered on the
|
||||
cluster. In this sense, these data are observed data and the view from Earth is accurate.
|
||||
But the distance of each star has been derived from this educated-guess approach for the
|
||||
cluster's stellar population by Lynne Hillenbrand, who was working at the University of
|
||||
California, Berkeley at the time. The catalog from her paper contains more than 1500
|
||||
stars, about half the stars in the actual cluster. The cluster is very crowded, with a
|
||||
peak density of 10000 stars per cubic parsec over a wide range of masses from a tenth the
|
||||
sun's mass up to 50 times its mass. We were presented with one problem: there are no
|
||||
distances. For the stellar distances, we needed to deduce them by statistical methods.
|
||||
Knowing the size of the cluster and approximating the shape to be roughly spherical, we
|
||||
placed each star along a line of sight through this imaginary sphere centered on the
|
||||
cluster. In this sense, these data are observed data and the view from Earth is accurate.
|
||||
But the distance of each star has been derived from this educated-guess approach for the
|
||||
cluster distribution]]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,18 +28,18 @@ local NebulaHolder = {
|
||||
GUI = {
|
||||
Name = "Orion Nebula",
|
||||
Path = "/Milky Way/Orion",
|
||||
Description = [[In the Digital Universe model of the Orion Nebula, we depict the
|
||||
ionization front effectively as a terrain, with a flat Hubble image of the nebula mapped
|
||||
Description = [[In the Digital Universe model of the Orion Nebula, we depict the
|
||||
ionization front effectively as a terrain, with a flat Hubble image of the nebula mapped
|
||||
on the undulating surface. In reality, the ionization front has a slight thickness to
|
||||
it - about a third of a light year - but is quite thin compared to the overall size of
|
||||
the nebula, which stretches about ten light years from side to side.<br><br>Close into
|
||||
the center, we see small teardrop-shaped structures with their narrow ends pointing away
|
||||
from the bright star: these are protoplanetary disks, or proplyds, of dense gas and dust
|
||||
surrounding young stars. The larger formations that one sees farther away from the center
|
||||
of the nebula take on a cup-like shape, with the narrow end pointing away from the
|
||||
nebulas center. These enormous structures are bow shocks that delineate the region where
|
||||
highspeed winds from the central star slow from supersonic to subsonic speeds. You can
|
||||
think of an HII region as a sort of tremendous explosion, taking place over millennia,
|
||||
it - about a third of a light year - but is quite thin compared to the overall size of
|
||||
the nebula, which stretches about ten light years from side to side.<br><br>Close into
|
||||
the center, we see small teardrop-shaped structures with their narrow ends pointing away
|
||||
from the bright star: these are protoplanetary disks, or proplyds, of dense gas and dust
|
||||
surrounding young stars. The larger formations that one sees farther away from the center
|
||||
of the nebula take on a cup-like shape, with the narrow end pointing away from the
|
||||
nebulas center. These enormous structures are bow shocks that delineate the region where
|
||||
highspeed winds from the central star slow from supersonic to subsonic speeds. You can
|
||||
think of an HII region as a sort of tremendous explosion, taking place over millennia,
|
||||
and the bow shocks are part of the outward rush of material]]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ asset.meta = {
|
||||
Name = "Bastille Day magnetogram textures",
|
||||
Version = "1.1",
|
||||
Description = [[This asset adds multiple magnetogram textures to the Sun. In addition
|
||||
it provides an action to cycle through the textures. See magnetogram.asset for details
|
||||
it provides an action to cycle through the textures. See magnetogram.asset for details
|
||||
of the textures]],
|
||||
Author = "OpenSpace Team",
|
||||
URL = "http://openspaceproject.com",
|
||||
|
||||
@@ -4,13 +4,13 @@ local apollo11_setup_landingsite = {
|
||||
Identifier = "os.missions.apollo11.setup.landingsite",
|
||||
Name = "Setup Apollo 11 landing site",
|
||||
Command = [[
|
||||
openspace.time.setTime('1969 JUL 20 20:17:40');
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.HeightLayers.LRO_NAC_Apollo_11.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A11_M177481212_p_longlat.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.TargetLodScaleFactor', 20.11);
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'Apollo11LemPosition');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
openspace.setPropertyValueSingle('Scene.Apollo11MoonTrail.Renderable.Enabled', true);
|
||||
openspace.time.setTime('1969 JUL 20 20:17:40');
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.HeightLayers.LRO_NAC_Apollo_11.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A11_M177481212_p_longlat.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.TargetLodScaleFactor', 20.11);
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'Apollo11LemPosition');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
openspace.setPropertyValueSingle('Scene.Apollo11MoonTrail.Renderable.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Apollo11LemTrail.Renderable.Enabled', true);
|
||||
]],
|
||||
Documentation = "Setup for Apollo 11 landing site",
|
||||
|
||||
@@ -4,17 +4,17 @@ local apollo17_setup_landingsite = {
|
||||
Identifier = "os.missions.apollo17.setup.landingsite",
|
||||
Name = "Setup for Apollo 17 landing site",
|
||||
Command = [[
|
||||
openspace.time.setTime('1972 DEC 12 19:47:11');
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_travmap.BlendMode', 0.000000);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_travmap.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.HeightLayers.LRO_NAC_Apollo_17.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_LEM.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_LEM.BlendMode', 0.000000);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_NAC_Alt_p.Enabled', true);
|
||||
openspace.time.setTime('1972 DEC 12 19:47:11');
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_travmap.BlendMode', 0.000000);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_travmap.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.HeightLayers.LRO_NAC_Apollo_17.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_LEM.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_LEM.BlendMode', 0.000000);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_NAC_Alt_p.Enabled', true);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_NAC_Alt_p.BlendMode', 0.000000);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.TargetLodScaleFactor', 20.17);
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'Apollo17LemModel');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.TargetLodScaleFactor', 20.17);
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'Apollo17LemModel');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A17_station7.BlendMode', 0.000000);
|
||||
]],
|
||||
Documentation = "Setup for Apollo 17 landing site",
|
||||
|
||||
@@ -2,10 +2,10 @@ local apollo8_setup_earthrise = {
|
||||
Identifier = "os.missions.apollo8.setup.earthrise",
|
||||
Name = "Set Earthrise time",
|
||||
Command = [[
|
||||
openspace.time.setPause(true);
|
||||
openspace.time.setDeltaTime(1);
|
||||
openspace.time.setTime('1968 DEC 24 16:37:31');
|
||||
openspace.navigation.setNavigationState({Anchor = 'Apollo8', Position = { 1.494592E1, 3.236777E1, -4.171296E1 }, ReferenceFrame = 'Root', Up = { 0.960608E0, -0.212013E0, 0.179675E0 }});
|
||||
openspace.time.setPause(true);
|
||||
openspace.time.setDeltaTime(1);
|
||||
openspace.time.setTime('1968 DEC 24 16:37:31');
|
||||
openspace.navigation.setNavigationState({Anchor = 'Apollo8', Position = { 1.494592E1, 3.236777E1, -4.171296E1 }, ReferenceFrame = 'Root', Up = { 0.960608E0, -0.212013E0, 0.179675E0 }});
|
||||
openspace.setPropertyValue('*Trail.Renderable.Enabled', false);
|
||||
]],
|
||||
Documentation = "Jump to right before the earthrise photo",
|
||||
@@ -17,7 +17,7 @@ local apollo8_setup_launch = {
|
||||
Identifier = "os.missions.apollo8.setup.launch",
|
||||
Name = "Set Apollo 8 launch time",
|
||||
Command = [[
|
||||
openspace.time.setTime('1968-12-21T12:51:37.00');
|
||||
openspace.time.setTime('1968-12-21T12:51:37.00');
|
||||
openspace.setPropertyValueSingle('Scene.Apollo8LaunchTrail.Renderable.Enabled', true);
|
||||
]],
|
||||
Documentation = "Jump to time right before Apollo 8 liftoff, with its trail enabled",
|
||||
|
||||
@@ -13,8 +13,8 @@ local focus_moon = {
|
||||
Identifier = "os.missions.apollo.moon.focus",
|
||||
Name = "Focus on Moon",
|
||||
Command = [[
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Moon');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Moon');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Set camera focus on the Moon",
|
||||
@@ -26,8 +26,8 @@ local focus_earth = {
|
||||
Identifier = "os.missions.apollo.earth.focus",
|
||||
Name = "Focus on Earth",
|
||||
Command = [[
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Earth');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Earth');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Set camera focus on the Earth",
|
||||
@@ -38,7 +38,7 @@ local focus_earth = {
|
||||
asset.onInitialize(function()
|
||||
openspace.action.registerAction(toggle_moon_shading)
|
||||
openspace.action.registerAction(focus_moon)
|
||||
openspace.action.registerAction(focus_earth)
|
||||
openspace.action.registerAction(focus_earth)
|
||||
end)
|
||||
|
||||
asset.onDeinitialize(function()
|
||||
|
||||
@@ -44,17 +44,17 @@ local apollo_moon_disableapollosites= {
|
||||
Identifier = "os.missions.apollo.moon.disableapollosites",
|
||||
Name = "Disable Apollo sites",
|
||||
Command = [[
|
||||
openspace.setPropertyValue('Scene.Moon.Renderable.Layers.ColorLayers.A17_*.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.HeightLayers.LRO_NAC_Apollo_11.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A11_M177481212_p_longlat.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Apollo11MoonTrail.Renderable.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Apollo11LemTrail.Renderable.Enabled', false);
|
||||
openspace.setPropertyValue('Scene.Moon.Renderable.Layers.ColorLayers.A17_*.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.HeightLayers.LRO_NAC_Apollo_11.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.ColorLayers.A11_M177481212_p_longlat.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Apollo11MoonTrail.Renderable.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Apollo11LemTrail.Renderable.Enabled', false);
|
||||
openspace.setPropertyValueSingle('Scene.Moon.Renderable.Layers.HeightLayers.LRO_NAC_Apollo_17.Enabled', false);
|
||||
]],
|
||||
Documentation = "Disable apollo site on moon when leaving",
|
||||
GuiPath = "/Missions/Apollo",
|
||||
IsLocal = false
|
||||
}
|
||||
}
|
||||
|
||||
asset.onInitialize(function ()
|
||||
openspace.globebrowsing.addBlendingLayersFromDirectory(heightmaps, moon_transforms.Moon.Identifier)
|
||||
|
||||
@@ -16,7 +16,7 @@ local insightNavigationState = [[
|
||||
local Shortcuts = {
|
||||
{
|
||||
Command = [[
|
||||
openspace.setPropertyValueSingle("Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset", -469.300000);
|
||||
openspace.setPropertyValueSingle("Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset", -469.300000);
|
||||
openspace.setPropertyValueSingle("Scene.Mars.Renderable.Layers.HeightLayers.OnMarsHiRISELS.Settings.Offset", -470.800006);
|
||||
]],
|
||||
Documentation = "Enable Insight landing height layer offset",
|
||||
@@ -26,7 +26,7 @@ local Shortcuts = {
|
||||
},
|
||||
{
|
||||
Command = [[
|
||||
openspace.setPropertyValueSingle("Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset", 0);
|
||||
openspace.setPropertyValueSingle("Scene.Mars.Renderable.Layers.HeightLayers.Mola_Utah.Settings.Offset", 0);
|
||||
openspace.setPropertyValueSingle("Scene.Mars.Renderable.Layers.HeightLayers.OnMarsHiRISELS.Settings.Offset", 0);
|
||||
]],
|
||||
Documentation = "Disable Insight landing height layer offset",
|
||||
|
||||
@@ -76,7 +76,7 @@ asset.meta = {
|
||||
Version = "1.0",
|
||||
Description = [[
|
||||
Kernels were acquired from the official Juice mailing list and extended with the
|
||||
GPHIO kernel provided by Ronan Modolo for the fieldline and plane data visualization
|
||||
GPHIO kernel provided by Ronan Modolo for the fieldline and plane data visualization
|
||||
]],
|
||||
Author = "OpenSpace Team",
|
||||
URL = "http://openspaceproject.com",
|
||||
|
||||
@@ -58,7 +58,7 @@ local xy_u = {
|
||||
GUI = {
|
||||
Name = "Ganymede XY Plane U",
|
||||
Path = "/Solar System/Missions/Juice/Plane",
|
||||
Description = [[A cut plane in Ganymede's XY plane showing the strength of the
|
||||
Description = [[A cut plane in Ganymede's XY plane showing the strength of the
|
||||
magnetic field]]
|
||||
}
|
||||
}
|
||||
@@ -193,7 +193,7 @@ local xz_u = {
|
||||
GUI = {
|
||||
Name = "Ganymede XZ Plane U",
|
||||
Path = "/Solar System/Missions/Juice/Plane",
|
||||
Description = [[A cut plane in Ganymede's XZ plane showing the strength of the
|
||||
Description = [[A cut plane in Ganymede's XZ plane showing the strength of the
|
||||
magnetic field]]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -198,11 +198,11 @@ asset.onInitialize(function()
|
||||
openspace.addSceneGraphNode(Juno)
|
||||
openspace.addSceneGraphNode(JunoTrail)
|
||||
end)
|
||||
|
||||
|
||||
asset.onDeinitialize(function()
|
||||
openspace.removeSceneGraphNode(JunoTrail)
|
||||
openspace.removeSceneGraphNode(Juno)
|
||||
end)
|
||||
|
||||
|
||||
asset.export(Juno)
|
||||
asset.export(JunoTrail)
|
||||
|
||||
@@ -2,9 +2,9 @@ local toggle_lagrangian_points = {
|
||||
Identifier = "os.missions.jwst.togglelagrangianpoints",
|
||||
Name = "Toggle Lagrangian points",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{lagrange_points_earth}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{lagrange_points_earth}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggle points and labels for the Lagrangian points for Earth Sun system",
|
||||
@@ -16,9 +16,9 @@ local toggle_hudf = {
|
||||
Identifier = "os.missions.jwst.togglehudf",
|
||||
Name = "Toggle Hubble Ultra Deep Field",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{mission_jwst_hudf}.*.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{mission_jwst_hudf}.*.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggle Hubble Ultra Deep Field image and line towards its coordinate",
|
||||
@@ -30,9 +30,9 @@ local toggle_l2 = {
|
||||
Identifier = "os.missions.jwst.togglel2",
|
||||
Name = "Toggle L2 line and small L2 label",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{lagrange_points_earth_l2_small}.*.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{lagrange_points_earth_l2_small}.*.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggle L2 label, point and line",
|
||||
@@ -44,9 +44,9 @@ local toggle_fov = {
|
||||
Identifier = "os.missions.jwst.togglefov",
|
||||
Name = "Toggle JWST field of view and view band",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{mission_jwst_fov}.*.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{mission_jwst_fov}.*.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggle James Webb Space Telecope field of view and view band",
|
||||
@@ -58,7 +58,7 @@ local setup_launch = {
|
||||
Identifier = "os.missoins.jwst.setup.launch",
|
||||
Name = "Set to JWST launch time",
|
||||
Command = [[
|
||||
openspace.time.setDeltaTime(1);
|
||||
openspace.time.setDeltaTime(1);
|
||||
openspace.time.setTime('2021-12-25T12:20:01');
|
||||
]],
|
||||
Documentation = "Set the time to the launch time of JWST",
|
||||
@@ -70,7 +70,7 @@ local setup_detach = {
|
||||
Identifier = "os.missions.jwst.setup.detach",
|
||||
Name = "Set to JWST detach time",
|
||||
Command = [[
|
||||
openspace.time.setDeltaTime(1);
|
||||
openspace.time.setDeltaTime(1);
|
||||
openspace.time.setTime('2021-12-25T12:50:00');
|
||||
]],
|
||||
Documentation = "Set the time to the detach time of JWST",
|
||||
@@ -82,7 +82,7 @@ local toggle_sun_trail = {
|
||||
Identifier = "os.missions.jwst.togglesuntrail",
|
||||
Name = "Toggle JWST Sun trail",
|
||||
Command = [[
|
||||
local value = openspace.getPropertyValue('Scene.JWSTSunTrail.Renderable.Enabled');
|
||||
local value = openspace.getPropertyValue('Scene.JWSTSunTrail.Renderable.Enabled');
|
||||
openspace.setPropertyValueSingle('Scene.JWSTSunTrail.Renderable.Enabled', not value);
|
||||
]],
|
||||
Documentation = "Toggle JWST trail relative to the Sun",
|
||||
@@ -94,14 +94,14 @@ local toggle_trails_except_moon = {
|
||||
Identifier = "os.missions.jwst.toggletrialsexceptmoon",
|
||||
Name = "Toggle trails (except Moon)",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{planetTrail_solarSystem}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
local moonlist = openspace.getProperty('{moonTrail_solarSystem}.Renderable.Enabled')
|
||||
for _,v in pairs(moonlist) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
local list = openspace.getProperty('{planetTrail_solarSystem}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
local moonlist = openspace.getProperty('{moonTrail_solarSystem}.Renderable.Enabled')
|
||||
for _,v in pairs(moonlist) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
openspace.setPropertyValueSingle('Scene.MoonTrail.Renderable.Enabled', true)
|
||||
]],
|
||||
Documentation = "Toggle all planet and moon trails, except the Moon",
|
||||
@@ -113,9 +113,9 @@ local toggle_jwst_trail = {
|
||||
Identifier = "os.missions.jwst.togglejwsttrails",
|
||||
Name = "Toggle JWST trail",
|
||||
Command = [[
|
||||
local list = {'Scene.JWSTTrailLaunch.Renderable.Enabled', 'Scene.JWSTTrailCruise.Renderable.Enabled', 'Scene.JWSTTrailCoRevOrbit.Renderable.Enabled'};
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v));
|
||||
local list = {'Scene.JWSTTrailLaunch.Renderable.Enabled', 'Scene.JWSTTrailCruise.Renderable.Enabled', 'Scene.JWSTTrailCoRevOrbit.Renderable.Enabled'};
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v));
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggle JWST launch, cruise and L2 co-revolving orbit trails, not the Sun trail",
|
||||
|
||||
@@ -29,7 +29,7 @@ local focus_pluto = {
|
||||
Name = "Focus on Pluto",
|
||||
Command = [[
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'PlutoProjection');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Sets the focus of the camera on 'Pluto'",
|
||||
@@ -147,9 +147,9 @@ local toggle_pluto_labels = {
|
||||
Identifier = "os.missions.newhorizons.pluto.togglelabels",
|
||||
Name = "Toggle Pluto Labels",
|
||||
Command = [[
|
||||
local list = {"Scene.PlutoText.Renderable.Enabled", "Scene.CharonText.Renderable.Enabled", "Scene.HydraText.Renderable.Enabled", "Scene.NixText.Renderable.Enabled", "Scene.KerberosText.Renderable.Enabled", "Scene.StyxText.Renderable.Enabled"};
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = {"Scene.PlutoText.Renderable.Enabled", "Scene.CharonText.Renderable.Enabled", "Scene.HydraText.Renderable.Enabled", "Scene.NixText.Renderable.Enabled", "Scene.KerberosText.Renderable.Enabled", "Scene.StyxText.Renderable.Enabled"};
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggles the visibility of the text labels of Pluto, Charon, Hydra, Nix, Kerberos, and Styx",
|
||||
@@ -161,11 +161,11 @@ local toggle_nh_labels = {
|
||||
Identifier = "os.missions.newhorizons.togglelabels",
|
||||
Name = "Toggle New Horizons Labels",
|
||||
Command = [[
|
||||
local v = openspace.getPropertyValue("Scene.Labels.Renderable.Opacity");
|
||||
if v <= 0.5 then
|
||||
openspace.setPropertyValueSingle("Scene.Labels.Renderable.Opacity",1.0,2.0)
|
||||
else
|
||||
openspace.setPropertyValueSingle("Scene.Labels.Renderable.Opacity",0.0,2.0)
|
||||
local v = openspace.getPropertyValue("Scene.Labels.Renderable.Opacity");
|
||||
if v <= 0.5 then
|
||||
openspace.setPropertyValueSingle("Scene.Labels.Renderable.Opacity",1.0,2.0)
|
||||
else
|
||||
openspace.setPropertyValueSingle("Scene.Labels.Renderable.Opacity",0.0,2.0)
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggles the visibility of the labels for the New Horizons instruments",
|
||||
|
||||
@@ -2,8 +2,8 @@ local focus_osirisrex = {
|
||||
Identifier = "os.missions.osirisrex.focus",
|
||||
Name = "Focus on OsirisRex",
|
||||
Command = [[
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'OsirisRex');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'OsirisRex');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Sets the focus of the camera on 'OsirisRex'",
|
||||
@@ -15,8 +15,8 @@ local focus_bennu = {
|
||||
Identifier = "os.missions.osirisrex.bennu.focus",
|
||||
Name = "Focus on Bennu",
|
||||
Command = [[
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'BennuBarycenter');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'BennuBarycenter');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Sets the focus of the camera on 'Bennu'",
|
||||
@@ -40,7 +40,7 @@ local bennu_survey_time = {
|
||||
Identifier = "os.missions.osirisrex.setup.bennusurvey",
|
||||
Name = "Set Bennu survey time",
|
||||
Command = [[
|
||||
openspace.printInfo('Set time: Preliminary Survey');
|
||||
openspace.printInfo('Set time: Preliminary Survey');
|
||||
openspace.time.setTime('2018-NOV-20 01:13:12.183');
|
||||
]],
|
||||
Documentation = "Sets the time to the preliminary survey of Bennu",
|
||||
@@ -52,7 +52,7 @@ local bennu_event_b = {
|
||||
Identifier = "os.missions.osirisrex.setup.bennueventb",
|
||||
Name = "Set orbital B event time",
|
||||
Command = [[
|
||||
openspace.printInfo('Set time: Orbital B');
|
||||
openspace.printInfo('Set time: Orbital B');
|
||||
openspace.time.setTime('2019-APR-08 10:35:27.186');
|
||||
]],
|
||||
Documentation = "Sets the time to the orbital B event",
|
||||
@@ -64,7 +64,7 @@ local bennu_recon_event = {
|
||||
Identifier = "os.missions.osirisrex.setup.bennureconevent",
|
||||
Name = "Set recon event time",
|
||||
Command = [[
|
||||
openspace.printInfo('Set time: Recon');
|
||||
openspace.printInfo('Set time: Recon');
|
||||
openspace.time.setTime('2019-MAY-25 03:50:31.195');
|
||||
]],
|
||||
Documentation = "Sets the time to the recon event",
|
||||
|
||||
@@ -21,7 +21,7 @@ asset.onInitialize(function()
|
||||
end)
|
||||
|
||||
asset.onDeinitialize(function()
|
||||
openspace.action.removeAction(setup_perseverance)
|
||||
openspace.action.removeAction(setup_perseverance)
|
||||
end)
|
||||
|
||||
asset.meta = {
|
||||
@@ -31,4 +31,4 @@ asset.meta = {
|
||||
Author = "OpenSpace Team",
|
||||
URL = "http://openspaceproject.com",
|
||||
License = "MIT license"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -136,8 +136,8 @@ local focus_67p = {
|
||||
Identifier = "os.missions.rosetta.67p.focus",
|
||||
Name = "Focus on 67P",
|
||||
Command = [[
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', '67P');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', '67P');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Sets the focus of the camera on 67P",
|
||||
|
||||
@@ -2,9 +2,9 @@ local toggle_outer_planetary_trails = {
|
||||
Identifier = "os.missions.rosetta.toggleouterplanetarytrails",
|
||||
Name = "Toggle outer planetary trails",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{planetTrail_giants}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{planetTrail_giants}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggles the visibility of all trails further from the Sun than 67P",
|
||||
|
||||
@@ -560,8 +560,8 @@ local focus_rosetta = {
|
||||
Identifier = "os.missions.rosetta.focus",
|
||||
Name = "Focus on Rosetta",
|
||||
Command = [[
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'Rosetta');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Anchor', 'Rosetta');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValue('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Sets the focus of the camera on Rosetta",
|
||||
|
||||
@@ -50,9 +50,9 @@ local toggle_minormoon_trails = {
|
||||
Identifier = "os.missions.voyager.toggleminormoontrails",
|
||||
Name = "Toggle minor trails",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{moonTrail_minor}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{moonTrail_minor}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggles the trails of the minor moons",
|
||||
|
||||
+1
-1
@@ -159,7 +159,7 @@ asset.meta = {
|
||||
Name = "Pioneer and Voyager Trails",
|
||||
Version = "1.1",
|
||||
Description = [[Pioneer 10, Pioneer 11, Voyager 1 and Voyager 2 trails. Driven by JPL
|
||||
Horizons data for better performance then spice but lower resolution. Data is from
|
||||
Horizons data for better performance then spice but lower resolution. Data is from
|
||||
shortly after mission launches until January 1st, 2030]],
|
||||
Author = "OpenSpace Team",
|
||||
URL = "http://openspaceproject.com",
|
||||
|
||||
@@ -77,8 +77,8 @@ local focus_earth = {
|
||||
Identifier = "os.solarsystem.earth.focus",
|
||||
Name = "Focus on Earth",
|
||||
Command = [[
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Earth');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Earth');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Set camera focus on the Earth",
|
||||
@@ -90,9 +90,9 @@ local toggle_earth_satellitetrails = {
|
||||
Identifier = "os.solarsystem.earth.togglesatellitetrails",
|
||||
Name = "Toggle satellite trails",
|
||||
Command = [[
|
||||
local list = openspace.getProperty('{earth_satellites}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
local list = openspace.getProperty('{earth_satellites}.Renderable.Enabled');
|
||||
for _,v in pairs(list) do
|
||||
openspace.setPropertyValueSingle(v, not openspace.getPropertyValue(v))
|
||||
end
|
||||
]],
|
||||
Documentation = "Toggle trails on or off for satellites around Earth",
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ asset.export("layer", layer)
|
||||
asset.meta = {
|
||||
Name = "Clem Uvvis [Utah]",
|
||||
Version = "1.1",
|
||||
Description = [[Moon Clementine UVVIS Global Mosaic 118m v2 map of the Moon. This map
|
||||
Description = [[Moon Clementine UVVIS Global Mosaic 118m v2 map of the Moon. This map
|
||||
is hosted on the OpenSpace server in Utah]],
|
||||
Author = "USGS",
|
||||
URL = "https://astrogeology.usgs.gov/search/map/Moon/Clementine/UVVIS/Lunar_Clementine_UVVIS_750nm_Global_Mosaic_118m_v2",
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@ asset.export("layer", layer)
|
||||
asset.meta = {
|
||||
Name = "Lola Color Shade [Utah]",
|
||||
Version = "1.1",
|
||||
Description = [[Moon LRO LOLA Color Shaded Relief 388m v4 layer for Moon globe. This
|
||||
Description = [[Moon LRO LOLA Color Shaded Relief 388m v4 layer for Moon globe. This
|
||||
map is hosted on the OpenSpace server in Utah]],
|
||||
Author = "USGS",
|
||||
URL = "https://astrogeology.usgs.gov/search/map/Moon/LMMP/LOLA-derived/Lunar_LRO_LOLA_ClrShade_Global_128ppd_v04",
|
||||
|
||||
@@ -85,8 +85,8 @@ local focus_moon = {
|
||||
Identifier = "os.solarsystem.earth.moon.focus",
|
||||
Name = "Focus on Moon",
|
||||
Command = [[
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Moon');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Aim', '');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.Anchor', 'Moon');
|
||||
openspace.setPropertyValueSingle('NavigationHandler.OrbitalNavigator.RetargetAnchor', nil);
|
||||
]],
|
||||
Documentation = "Set camera focus on the Moon",
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>1</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<BandsCount>3</BandsCount>
|
||||
<MaxConnections>10</MaxConnections>
|
||||
<DataValues NoData="0" Min="1" Max="255"/>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
<ZeroBlockHttpCodes>404,400</ZeroBlockHttpCodes>
|
||||
</GDAL_WMS>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user